View | Details | Raw Unified | Return to bug 76620
Collapse All | Expand All

(-)HandleFactory.java (-1 / +1 lines)
Lines 164-170 public class HandleFactory { Link Here
164
			
164
			
165
		    public void push(ASTNode node) {
165
		    public void push(ASTNode node) {
166
		    	if (++this.nodeIndex >= this.nodeStack.length) 
166
		    	if (++this.nodeIndex >= this.nodeStack.length) 
167
		            System.arraycopy(this.nodeStack, 0, this.nodeStack = new ASTNode[this.nodeStack.length*2], 0, this.nodeIndex-1);
167
		            System.arraycopy(this.nodeStack, 0, this.nodeStack = new ASTNode[this.nodeStack.length*2], 0, this.nodeIndex);
168
	            this.nodeStack[this.nodeIndex] = node;
168
	            this.nodeStack[this.nodeIndex] = node;
169
		    }
169
		    }
170
		    
170
		    

Return to bug 76620