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 2009/11/10 21:32:39 UTC

svn commit: r834653 - /xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/CaseInsensitiveMap.java

Author: mrglavas
Date: Tue Nov 10 20:32:39 2009
New Revision: 834653

URL: http://svn.apache.org/viewvc?rev=834653&view=rev
Log:
Reduce visibility to prevent applications from inadvertently acquiring a dependency on this internal class. 

Modified:
    xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/CaseInsensitiveMap.java

Modified: xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/CaseInsensitiveMap.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/CaseInsensitiveMap.java?rev=834653&r1=834652&r2=834653&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/CaseInsensitiveMap.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/CaseInsensitiveMap.java Tue Nov 10 20:32:39 2009
@@ -18,9 +18,11 @@
 package org.apache.xerces.impl.xpath.regex;
 
 /**
+ * @xerces.internal
+ * 
  * @version $Id$
  */
-public class CaseInsensitiveMap {
+final class CaseInsensitiveMap {
 
     private static int CHUNK_SHIFT = 10;           /* 2^10 = 1k */
     private static int CHUNK_SIZE = (1<<CHUNK_SHIFT);



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