wrapper function Xml.getFromString(str) called Xml.get() instead of Xml.getFromString(str, null)

This commit is contained in:
michi 2003-10-13 17:43:16 +00:00
parent fa4ce3ed6f
commit c55a192d5d

View file

@ -260,7 +260,7 @@ public class XmlObject {
* @return a HopObject obtained from parsing the XML
*/
public Object getFromString(String str) {
return get(str, null);
return getFromString(str, null);
}