ICU-3653 don't use 'enum' as var name
X-SVN-Rev: 15239
This commit is contained in:
parent
2873f03255
commit
f5a4740622
@ -192,7 +192,7 @@ public class XMLComparator {
|
||||
}
|
||||
boolean warning[] = new boolean[1];
|
||||
warning[0] = false;
|
||||
Enumeration enum = optionTable.keys();
|
||||
Enumeration en = optionTable.keys();
|
||||
|
||||
try{
|
||||
|
||||
@ -203,8 +203,8 @@ public class XMLComparator {
|
||||
System.out.println("INFO: Creating file named: " + fileName);
|
||||
|
||||
addToCompareMap(goldFileName, goldKey);
|
||||
for(;enum.hasMoreElements();){
|
||||
String key = (String)enum.nextElement();
|
||||
for(;en.hasMoreElements();){
|
||||
String key = (String)en.nextElement();
|
||||
String compFile = (String) optionTable.get(key);
|
||||
addToCompareMap(compFile,key);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user