Unnecessary cast from char to int
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@430166 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2ef7b77769
commit
06ebaca91c
|
@ -81,7 +81,7 @@ public class RandomStringUtilsTest extends junit.framework.TestCase {
|
||||||
r1 = RandomStringUtils.randomAscii(50);
|
r1 = RandomStringUtils.randomAscii(50);
|
||||||
assertEquals("randomAscii(50) length", 50, r1.length());
|
assertEquals("randomAscii(50) length", 50, r1.length());
|
||||||
for(int i = 0; i < r1.length(); i++) {
|
for(int i = 0; i < r1.length(); i++) {
|
||||||
assertTrue("char between 32 and 127", (int) r1.charAt(i) >= 32 && (int) r1.charAt(i) <= 127);
|
assertTrue("char between 32 and 127", r1.charAt(i) >= 32 && r1.charAt(i) <= 127);
|
||||||
}
|
}
|
||||||
r2 = RandomStringUtils.randomAscii(50);
|
r2 = RandomStringUtils.randomAscii(50);
|
||||||
assertTrue("!r1.equals(r2)", !r1.equals(r2));
|
assertTrue("!r1.equals(r2)", !r1.equals(r2));
|
||||||
|
|
Loading…
Reference in New Issue