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:
parent
a86463bcc2
commit
f3506beb79
|
@ -98,13 +98,13 @@ public class EntitiesPerformanceTest extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private char html40value(int i) {
|
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);
|
char ch = (char) Integer.parseInt(entityValue);
|
||||||
return ch;
|
return ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
private char isovalue(int i) {
|
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);
|
char ch = (char) Integer.parseInt(entityValue);
|
||||||
return ch;
|
return ch;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue