Fix: Remove System.out.println in BytesTrieSet… (#8172)

Signed-off-by: Brawn <nftdropped@gmail.com>
Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
Brawn
2025-01-31 07:06:33 +03:00
committed by GitHub
parent ccd3582630
commit 57454cb7cf

View File

@@ -57,7 +57,7 @@ public class BytesTrieSet<E extends Bytes> extends AbstractSet<E> {
if (leafObject == null) sb.append("null");
else {
sb.append('[');
System.out.println(leafObject.toHexString());
sb.append(leafObject.toHexString());
sb.append(']');
}
sb.append(", children=");