mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
parent value in constructor was backwards
This commit is contained in:
@@ -470,7 +470,7 @@ public class XMLElement
|
||||
* @param filename
|
||||
* @param parent
|
||||
*/
|
||||
public XMLElement(String filename, PApplet parent) {
|
||||
public XMLElement(PApplet parent, String filename) {
|
||||
this();
|
||||
try {
|
||||
Reader r = parent.createReader(filename);
|
||||
|
||||
Reference in New Issue
Block a user