Skip to content

Commit

Permalink
Fix: Remove System.out.println in BytesTrieSet… (#8172)
Browse files Browse the repository at this point in the history
Signed-off-by: Brawn <[email protected]>
Co-authored-by: Sally MacFarlane <[email protected]>
  • Loading branch information
brawncode and macfarla authored Jan 31, 2025
1 parent ccd3582 commit 57454cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public String toString() {
if (leafObject == null) sb.append("null");
else {
sb.append('[');
System.out.println(leafObject.toHexString());
sb.append(leafObject.toHexString());
sb.append(']');
}
sb.append(", children=");
Expand Down

0 comments on commit 57454cb

Please sign in to comment.