Skip to content

Commit 625914d

Browse files
committed
Remove unnecessary cast.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130368 13f79535-47bb-0310-9956-ffa450edef68
1 parent e211067 commit 625914d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/org/apache/commons/codec/language/RefinedSoundexTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* Tests RefinedSoundex.
2727
*
28-
* @version $Id: RefinedSoundexTest.java,v 1.10 2004/04/18 21:34:16 tobrien Exp $
28+
* @version $Id: RefinedSoundexTest.java,v 1.11 2004/05/24 00:17:24 ggregory Exp $
2929
* @author Apache Software Foundation
3030
*/
3131
public class RefinedSoundexTest extends StringEncoderAbstractTest {
@@ -106,6 +106,6 @@ public void testEncode() {
106106

107107
public void testGetMappingCodeNonLetter() {
108108
char code = this.getEncoder().getMappingCode('#');
109-
assertEquals( "Code does not equals zero", 0, (int) code);
109+
assertEquals("Code does not equals zero", 0, code);
110110
}
111111
}

0 commit comments

Comments
 (0)