Skip to content

Commit 00f3126

Browse files
committed
Clean up return statement.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1072735 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7d91ab7 commit 00f3126

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,6 @@ private String preprocess(String text) {
412412
}
413413
}
414414
}
415-
416-
text = new String(chrs);
417-
418-
return text;
415+
return new String(chrs);
419416
}
420417
}

0 commit comments

Comments
 (0)