mrglavas    2003/10/17 14:59:12

  Modified:    java/src/org/apache/xerces/xinclude XIncludeHandler.java
  Log:
  Some cleanup. 
  
  Remove references to XIncludeFatalError. This class is no longer used.
  
  Revision  Changes    Path
  1.5       +2 -4      
xml-xerces/java/src/org/apache/xerces/xinclude/XIncludeHandler.java
  
  Index: XIncludeHandler.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/xinclude/XIncludeHandler.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XIncludeHandler.java      17 Oct 2003 21:43:12 -0000      1.4
  +++ XIncludeHandler.java      17 Oct 2003 21:59:12 -0000      1.5
  @@ -1774,8 +1774,7 @@
        * 
        * @param ent the UnparsedEntity to check for conflicts
        */
  -    protected void checkAndSendUnparsedEntity(UnparsedEntity ent)
  -        throws XIncludeFatalError {
  +    protected void checkAndSendUnparsedEntity(UnparsedEntity ent) {
           if (isRootDocument()) {
               int index = fUnparsedEntities.indexOf(ent);
               if (index == -1) {
  @@ -1823,8 +1822,7 @@
        * 
        * @param not the Notation to check for conflicts
        */
  -    protected void checkAndSendNotation(Notation not)
  -        throws XIncludeFatalError {
  +    protected void checkAndSendNotation(Notation not) {
           if (isRootDocument()) {
               int index = fNotations.indexOf(not);
               if (index == -1) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to