always convert property names to lowercase
This commit is contained in:
parent
798c404847
commit
a699facf6d
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ public class XmlReader implements XmlConstants {
|
|||
prop.setStringValue (content);
|
||||
}
|
||||
}
|
||||
propMap.put (childElement.getTagName(), prop);
|
||||
propMap.put (childElement.getTagName().toLowerCase(), prop);
|
||||
}
|
||||
if ( propMap.size()>0 )
|
||||
helmaNode.setPropMap (propMap);
|
||||
|
|
Loading…
Add table
Reference in a new issue