Skip to content

Commit

Permalink
Disabled System.out from unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Egense committed Feb 23, 2024
1 parent 5230e73 commit ea59f2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public void testBufferingMerge() throws InterruptedException {
try (CollectionUtils.CloseableIterator<Integer> ci = CollectionUtils.mergeIteratorsBuffered(
Arrays.asList(pic1, pic2), Integer::compareTo, executor, gatekeeper, 1)) {
while(ci.hasNext()) {
System.out.println(ci.next());
// System.out.println(ci.next());
}
};
}
Expand Down

0 comments on commit ea59f2c

Please sign in to comment.