Skip to content

Commit 03af5cc

Browse files
committed
Fix mangled char
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1157582 13f79535-47bb-0310-9956-ffa450edef68
1 parent 800bfca commit 03af5cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ public String colognePhonetic(String text) {
389389

390390
public Object encode(Object object) throws EncoderException {
391391
if (!(object instanceof String)) {
392-
throw new EncoderException("This method’s parameter was expected to be of the type " +
392+
throw new EncoderException("This method's parameter was expected to be of the type " +
393393
String.class.getName() +
394394
". But actually it was of the type " +
395395
object.getClass().getName() +

0 commit comments

Comments
 (0)