Skip to content

Commit eb237a9

Browse files
committed
Clean up array decl.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1072740 13f79535-47bb-0310-9956-ffa450edef68
1 parent 00f3126 commit eb237a9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,10 @@ public char removeNext() {
258258
}
259259

260260
private static final char[][] PRE_REPLACEMENTS = new char[][] {
261-
new char[] { '\u00C4', 'A' }, // Ä
262-
new char[] { '\u00DC', 'U' }, // Ü
263-
new char[] { '\u00D6', 'O' }, // Ö
264-
new char[] { '\u00DF', 'S' } // ß
261+
{ '\u00C4', 'A' }, // Ä
262+
{ '\u00DC', 'U' }, // Ü
263+
{ '\u00D6', 'O' }, // Ö
264+
{ '\u00DF', 'S' } // ß
265265
};
266266

267267
/*

0 commit comments

Comments
 (0)