Skip to content

Commit

Permalink
fixed files form Closure #13
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 798541c commit fc821b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ private void traverse(Node node) {
do {
Node c = node.getFirstChild();
while(c != null) {
traverse(c);
Node next = c.getNext();
traverse(c);
c = next;
}

Expand Down

0 comments on commit fc821b1

Please sign in to comment.