Skip to content

Commit

Permalink
remove explicit toString call
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Foley committed Mar 2, 2024
1 parent d649f6f commit a95390e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(')');
}
Expand Down

0 comments on commit a95390e

Please sign in to comment.