Skip to content

Commit b011766

Browse files
committed
[CODEC-113] org.apache.commons.codec.language.RefinedSoundex.US_ENGLISH_MAPPING should be package protected
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1064307 13f79535-47bb-0310-9956-ffa450edef68
1 parent c86b5e2 commit b011766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/codec/language/RefinedSoundex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class RefinedSoundex implements StringEncoder {
4040
* mappings have been altered. This implementation contains default
4141
* mappings for US English.
4242
*/
43-
public static final char[] US_ENGLISH_MAPPING = US_ENGLISH_MAPPING_STRING.toCharArray();
43+
static final char[] US_ENGLISH_MAPPING = US_ENGLISH_MAPPING_STRING.toCharArray();
4444

4545
/**
4646
* Every letter of the alphabet is "mapped" to a numerical value. This char

0 commit comments

Comments
 (0)