costin 02/05/06 11:45:28
Modified: java/src/org/apache/xpath/compiler XPathParser.java
Log:
Remove the duplicated ;;
( which broke the JDK1.4 compilation which in turn broke all the gump
deps ).
Revision Changes Path
1.20 +2 -2
xml-xalan/java/src/org/apache/xpath/compiler/XPathParser.java
Index: XPathParser.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xpath/compiler/XPathParser.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- XPathParser.java 17 Apr 2002 13:13:45 -0000 1.19
+++ XPathParser.java 6 May 2002 18:45:28 -0000 1.20
@@ -535,7 +535,7 @@
// Patch for Christina's gripe. She wants her errorHandler to return
from
// this error and continue trying to parse, rather than throwing an
exception.
// Without the patch, that put us into an endless loop.
- throw new XPathProcessorException(CONTINUE_AFTER_FATAL_ERROR);;
+ throw new XPathProcessorException(CONTINUE_AFTER_FATAL_ERROR);
}
}
@@ -564,7 +564,7 @@
// Patch for Christina's gripe. She wants her errorHandler to return
from
// this error and continue trying to parse, rather than throwing an
exception.
// Without the patch, that put us into an endless loop.
- throw new XPathProcessorException(CONTINUE_AFTER_FATAL_ERROR);;
+ throw new XPathProcessorException(CONTINUE_AFTER_FATAL_ERROR);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]