Replaced old XML.parse() reference with PApplet.parseXML() reference

This commit is contained in:
alignedleft
2012-12-19 23:09:43 +00:00
parent 9cff581296
commit c9afeb5bc5
2 changed files with 8 additions and 5 deletions

View File

@@ -157,8 +157,6 @@ public class XML implements Serializable {
/**
* xxxxxxx
*
* @webref xml:method
* @brief Converts String content to an XML object
* @param data the content to be parsed as XML
@@ -166,7 +164,6 @@ public class XML implements Serializable {
* @throws SAXException
* @throws ParserConfigurationException
* @throws IOException
* @see PApplet#loadXML(String)
*/
static public XML parse(String data) throws IOException, ParserConfigurationException, SAXException {
return XML.parse(data, null);