[Bug 395605] class cast exception in XMLConfiguration fixed
This commit is contained in:
parent
e909bc4bc5
commit
89e5fc93dc
|
@ -763,9 +763,12 @@ public class XmlConfiguration
|
|||
{
|
||||
Object o = node.get(i);
|
||||
|
||||
XmlParser.Node argNode = (XmlParser.Node)o;
|
||||
if (o instanceof String)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
XmlParser.Node argNode = (XmlParser.Node)o;
|
||||
|
||||
String namedAttribute = argNode.getAttribute("name");
|
||||
Object value=value(obj,(XmlParser.Node)o);
|
||||
|
|
Loading…
Reference in New Issue