Removal of unnecessary cast to (String) during getter/setter enumeration.

This commit is contained in:
igor%mir2.org 2004-09-10 17:56:13 +00:00
Родитель 2e9f2ce29e
Коммит f274203998
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -453,7 +453,7 @@ class JavaMembers
// Add the new bean properties.
for (Enumeration e = toAdd.keys(); e.hasMoreElements();) {
String key = (String) e.nextElement();
Object key = e.nextElement();
Object value = toAdd.get(key);
ht.put(key, value);
}