Skip to content

Commit 8c928ec

Browse files
committed
cleanups redundant outputs
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent ea3bed0 commit 8c928ec

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

rsocket-core/src/test/java/io/rsocket/buffer/LeaksTrackingByteBufAllocator.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ public LeaksTrackingByteBufAllocator assertHasNoLeaks() {
8080
}
8181

8282
if (!hasUnreleased) {
83-
System.out.println(tag + " all the buffers are released...");
8483
return this;
8584
}
8685

87-
System.out.println(tag + " await buffers to be released");
8886
for (int i = 0; i < 100; i++) {
8987
System.gc();
9088
parkNanos(1000);
@@ -109,7 +107,6 @@ public LeaksTrackingByteBufAllocator assertHasNoLeaks() {
109107
return checkResult;
110108
},
111109
tag);
112-
System.out.println(tag + " all the buffers are released...");
113110
} finally {
114111
tracker.clear();
115112
}

0 commit comments

Comments
 (0)