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 2009/07/14 21:21:24 UTC

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

Author: ggregory
Date: Tue Jul 14 19:21:23 2009
New Revision: 794026

URL: http://svn.apache.org/viewvc?rev=794026&view=rev
Log:
Clirr detected change from public to private. Revert in preparation for 1.4.

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=794026&r1=794025&r2=794026&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 Tue Jul 14 19:21:23 2009
@@ -47,7 +47,7 @@
      * 
      * @see Soundex#Soundex(char[])
      */
-    private static final char[] US_ENGLISH_MAPPING = US_ENGLISH_MAPPING_STRING.toCharArray();
+    public static final char[] US_ENGLISH_MAPPING = US_ENGLISH_MAPPING_STRING.toCharArray();
 
     /**
      * An instance of Soundex using the US_ENGLISH_MAPPING mapping.