You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2007/09/02 19:19:41 UTC

svn commit: r572037 - /xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java

Author: mrglavas
Date: Sun Sep  2 10:19:41 2007
New Revision: 572037

URL: http://svn.apache.org/viewvc?rev=572037&view=rev
Log:
Marking a couple of fields final.

Modified:
    xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java?rev=572037&r1=572036&r2=572037&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java Sun Sep  2 10:19:41 2007
@@ -2874,10 +2874,10 @@
     private static final class CharacterBuffer {
 
         /** character buffer */
-        private char[] ch;
+        private final char[] ch;
         
         /** whether the buffer is for an external or internal scanned entity */
-        private boolean isExternal;
+        private final boolean isExternal;
         
         public CharacterBuffer(boolean isExternal, int size) {
             this.isExternal = isExternal;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org