Variables renamed to capitals

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137517 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-07-26 15:34:47 +00:00
parent a86463bcc2
commit f3506beb79
1 changed files with 2 additions and 2 deletions

View File

@ -98,13 +98,13 @@ public class EntitiesPerformanceTest extends TestCase {
}
private char html40value(int i) {
String entityValue = Entities.html40[i % Entities.html40.length][1];
String entityValue = Entities.HTML40_ARRAY[i % Entities.HTML40_ARRAY.length][1];
char ch = (char) Integer.parseInt(entityValue);
return ch;
}
private char isovalue(int i) {
String entityValue = Entities.iso8859_1[i % Entities.iso8859_1.length][1];
String entityValue = Entities.ISO8859_1_ARRAY[i % Entities.ISO8859_1_ARRAY.length][1];
char ch = (char) Integer.parseInt(entityValue);
return ch;
}