diff --git a/SimpleLinkedList/src/solution/SimpleLinkedList.java b/SimpleLinkedList/src/solution/SimpleLinkedList.java index 7e1f069..7e893a2 100644 --- a/SimpleLinkedList/src/solution/SimpleLinkedList.java +++ b/SimpleLinkedList/src/solution/SimpleLinkedList.java @@ -77,13 +77,12 @@ public class SimpleLinkedList extends AbstractSimpleList { @Override public void forAll(ICommand command) { - if(command != null) { - Node aktuellerKnoten = ersteKnoten; - while(aktuellerKnoten != null) { - command.execute(aktuellerKnoten.getPayload()); - aktuellerKnoten = aktuellerKnoten.getSuccessor(); + if (command != null) { + Node currentNode = firstNode; + while (currentNode != null) { + command.execute(currentNode.getPayload()); + currentNode = currentNode.getSuccessor(); } - } + } } - }