Index: HandleFactory.java =================================================================== RCS file: /home/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/HandleFactory.java,v retrieving revision 1.26.2.1 diff -u -p -B -w -r1.26.2.1 HandleFactory.java --- HandleFactory.java 21 Jul 2004 14:06:25 -0000 1.26.2.1 +++ HandleFactory.java 19 Oct 2004 23:48:15 -0000 @@ -164,7 +164,7 @@ public class HandleFactory { public void push(ASTNode node) { if (++this.nodeIndex >= this.nodeStack.length) - System.arraycopy(this.nodeStack, 0, this.nodeStack = new ASTNode[this.nodeStack.length*2], 0, this.nodeIndex-1); + System.arraycopy(this.nodeStack, 0, this.nodeStack = new ASTNode[this.nodeStack.length*2], 0, this.nodeIndex); this.nodeStack[this.nodeIndex] = node; }