Skip to content

Commit 0582892

Browse files
committed
Change preProcess to preprocess
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1063436 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5e52a98 commit 0582892

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ public String colognePhonetic(String text) {
298298
return null;
299299
}
300300

301-
text = preProcess(text);
301+
text = preprocess(text);
302302

303303
CologneLeftBuffer left = new CologneLeftBuffer(text.length() * 2);
304304
CologneRightBuffer right = new CologneRightBuffer(text.toCharArray());
@@ -401,7 +401,7 @@ private static boolean arrayContains(char[] arr, char key) {
401401
* Converts the string to upper case and replaces germanic umlauts, and the
402402
* “ß”.
403403
*/
404-
private String preProcess(String text) {
404+
private String preprocess(String text) {
405405
text = text.toUpperCase(Locale.GERMAN);
406406

407407
char[] chrs = text.toCharArray();

0 commit comments

Comments
 (0)