We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640cb85 commit 8017009Copy full SHA for 8017009
src/com/codefortomorrow/advanced/chapter16/solutions/LinkedList.java
@@ -110,7 +110,7 @@ public String toString() {
110
LinkedListNode current = head;
111
if (current == null) return null;
112
do {
113
- list += Integer.toString(current.getValue()) + ", ";
+ list += Integer.toString(current.value()) + ", ";
114
current = current.getNext();
115
} while (current != null);
116
0 commit comments