mkwan 2003/07/16 13:22:29
Modified: java/src/org/apache/xalan/xsltc/compiler/util
MethodGenerator.java
Log:
Fix for bug 20256. Remove an unused reference to an
inexistent class.
Revision Changes Path
1.14 +2 -10
xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java
Index: MethodGenerator.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- MethodGenerator.java 25 Jun 2003 14:40:36 -0000 1.13
+++ MethodGenerator.java 16 Jul 2003 20:22:29 -0000 1.14
@@ -112,7 +112,6 @@
private final Instruction _setStartNode;
private final Instruction _reset;
private final Instruction _nextNode;
- private final Instruction _nextNodeId;
private SlotAllocator _slotAllocator;
private boolean _allocatorInit = false;
@@ -193,9 +192,6 @@
index = cpg.addInterfaceMethodref(NODE_ITERATOR, NEXT, NEXT_SIG);
_nextNode = new INVOKEINTERFACE(index, 1);
- index =
cpg.addInterfaceMethodref("org.apache.xalan.xsltc.dom.SAXImpl$SingletonNodeIDIterator",
NEXTID, NEXT_SIG);
- _nextNodeId = new INVOKEINTERFACE(index, 1);
-
_slotAllocator = new SlotAllocator();
_slotAllocator.initialize(getLocalVariables());
_allocatorInit = true;
@@ -263,11 +259,7 @@
public final Instruction nextNode() {
return _nextNode;
}
-
- public final Instruction nextNodeId() {
- return _nextNodeId;
- }
-
+
public final Instruction startElement() {
return _startElement;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]