diff --git a/IPAddress/src/inet.ipaddr/inet/ipaddr/format/util/BinaryTreeNode.java b/IPAddress/src/inet.ipaddr/inet/ipaddr/format/util/BinaryTreeNode.java index 303fedaa..f48fb512 100644 --- a/IPAddress/src/inet.ipaddr/inet/ipaddr/format/util/BinaryTreeNode.java +++ b/IPAddress/src/inet.ipaddr/inet/ipaddr/format/util/BinaryTreeNode.java @@ -2324,7 +2324,7 @@ void printTree(StringBuilder builder, subNodeIndent = cached.subNodeInd; } if(withNonAdded || next.isAdded()) { - builder.append(nodeIndent).append(next.toString()); // appending next adds the ADDED_NODE_CIRCLE first + builder.append(nodeIndent).append(next); // appending next adds the ADDED_NODE_CIRCLE first if(withSizes) { builder.append(" (").append(next.size()).append(')'); }