format change and note about encoding

This commit is contained in:
benfry
2007-11-21 17:13:44 +00:00
parent 4a45577102
commit 10301b2e34
+7 -4
View File
@@ -65,6 +65,9 @@ import processing.core.PApplet;
* sketch. As such, this is not a full-featured library for handling XML data.
* For those who need it, more sophisticated libraries are available, and there
* are no plans to add significant new features to this library.
* <P>
* The encoding parameter inside XML files is ignored, all files are
* parsed with UTF-8 encoding (as of release 0134).
* <CODE>
* import processing.xml.*;
*
@@ -494,10 +497,10 @@ public class XMLElement
public XMLElement(String s) {
try {
parseString(s);
} catch (XMLParseException e) {
e.printStackTrace();
}
parseString(s);
} catch (XMLParseException e) {
e.printStackTrace();
}
}