mrglavas    2005/02/16 21:52:02

  Modified:    java/src/org/apache/xerces/xinclude XIncludeHandler.java
  Log:
  Making a couple of inner classes static. Neither Notation nor UnparsedEntity 
referenced any fields from the enclosing class.
  
  Revision  Changes    Path
  1.43      +3 -3      
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.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- XIncludeHandler.java      11 Jan 2005 14:35:16 -0000      1.42
  +++ XIncludeHandler.java      17 Feb 2005 05:52:02 -0000      1.43
  @@ -2373,7 +2373,7 @@
   
       // This is a storage class to hold information about the notations.
       // We're not using XMLNotationDecl because we don't want to lose the 
augmentations.
  -    protected class Notation {
  +    protected static class Notation {
           public String name;
           public String systemId;
           public String baseURI;
  @@ -2414,7 +2414,7 @@
   
       // This is a storage class to hold information about the unparsed 
entities.
       // We're not using XMLEntityDecl because we don't want to lose the 
augmentations.
  -    protected class UnparsedEntity {
  +    protected static class UnparsedEntity {
           public String name;
           public String systemId;
           public String baseURI;
  
  
  

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

Reply via email to