You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2011/01/27 22:14:47 UTC

svn commit: r1064309 - /commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/Soundex.java

Author: ggregory
Date: Thu Jan 27 21:14:46 2011
New Revision: 1064309

URL: http://svn.apache.org/viewvc?rev=1064309&view=rev
Log:
[CODEC-114] org.apache.commons.codec.language.Soundex.US_ENGLISH_MAPPING should be package protected MALICIOUS_CODE

Modified:
    commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/Soundex.java

Modified: commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/Soundex.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/Soundex.java?rev=1064309&r1=1064308&r2=1064309&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/Soundex.java (original)
+++ commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/Soundex.java Thu Jan 27 21:14:46 2011
@@ -47,7 +47,7 @@ public class Soundex implements StringEn
      * 
      * @see Soundex#Soundex(char[])
      */
-    public static final char[] US_ENGLISH_MAPPING = US_ENGLISH_MAPPING_STRING.toCharArray();
+    static final char[] US_ENGLISH_MAPPING = US_ENGLISH_MAPPING_STRING.toCharArray();
 
     /**
      * An instance of Soundex using the US_ENGLISH_MAPPING mapping.