Skip to content

Commit

Permalink
remove commented out sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Nov 23, 2018
1 parent 9282bed commit d3cd449
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -116,10 +116,6 @@ protected void print(Batch batch, String data) {
int size = data.length();
for (int i = 0; i < size; i = i + 1024) {
int end = i + 1024;
// try {
// Thread.sleep(5);
// } catch (InterruptedException ex) {
// }
writer.append(data, i, end < size ? end : size);
}
} catch (IOException ex) {
Expand Down

0 comments on commit d3cd449

Please sign in to comment.