mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 01:50:44 +01:00
remove "pair is" debug messages
This commit is contained in:
@@ -90,7 +90,7 @@ public class WebFrame extends JFrame {
|
||||
if (result.trim().length() != 0) {
|
||||
String[] pairs = result.split("&");
|
||||
for (String pair : pairs) {
|
||||
System.out.println("pair is " + pair);
|
||||
//System.out.println("pair is " + pair);
|
||||
String[] pieces = pair.split("=");
|
||||
String attr = PApplet.urlDecode(pieces[0]);
|
||||
String valu = PApplet.urlDecode(pieces[1]);
|
||||
@@ -192,4 +192,4 @@ public class WebFrame extends JFrame {
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user