зеркало из https://github.com/mozilla/pjs.git
Removal of unnecessary cast to (String) during getter/setter enumeration.
This commit is contained in:
Родитель
2e9f2ce29e
Коммит
f274203998
|
@ -453,7 +453,7 @@ class JavaMembers
|
||||||
|
|
||||||
// Add the new bean properties.
|
// Add the new bean properties.
|
||||||
for (Enumeration e = toAdd.keys(); e.hasMoreElements();) {
|
for (Enumeration e = toAdd.keys(); e.hasMoreElements();) {
|
||||||
String key = (String) e.nextElement();
|
Object key = e.nextElement();
|
||||||
Object value = toAdd.get(key);
|
Object value = toAdd.get(key);
|
||||||
ht.put(key, value);
|
ht.put(key, value);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче