DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8803>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8803

Cannot build current CVS

           Summary: Cannot build current CVS
           Product: XalanJ2
           Version: CurrentCVS
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: Major
          Priority: Other
         Component: org.apache.xpath
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Current CVS as of today doesn't build with Java 1.4.0 on Linux, here's a trivial fix. 
 
Index: java/src/org/apache/xpath/compiler/XPathParser.java 
=================================================================== 
RCS file: 
/home/cvspublic/xml-xalan/java/src/org/apache/xpath/compiler/XPathParser.java,v 
retrieving revision 1.19 
diff -a -u -r1.19 XPathParser.java 
--- java/src/org/apache/xpath/compiler/XPathParser.java 17 Apr 2002 13:13:45 -0000     
 
1.19 
+++ java/src/org/apache/xpath/compiler/XPathParser.java 4 May 2002 10:00:38 -0000 
@@ -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); 
     } 
   }

Reply via email to