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