I derped. Oh well. #122

Merged
StevenRS11 merged 18 commits from mazes into master 2014-01-04 07:15:16 +00:00
Showing only changes of commit 27b21f6674 - Show all commits

View File

@@ -226,6 +226,7 @@ public class LinkedList<T> implements Iterable<T>
Node<T> addition = new Node(node, node.next, data, this);
node.next = addition;
addition.next.prev = addition;
size++;
return addition;
}