We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ea556 commit 27e2158Copy full SHA for 27e2158
src/chapter06trees/BinaryTreeNode.java
@@ -75,7 +75,7 @@ public String toString() {
75
}
76
else {
77
String root, left = "null", right = "null";
78
- root = this.toString();
+ root = this.toString1();
79
if (getLeft() != null) {
80
left = getLeft().toString();
81
0 commit comments