Skip to content

Commit a4c3877

Browse files
committed
turn off some debug warnings
1 parent 1489102 commit a4c3877

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/processing/core/PApplet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9482,7 +9482,7 @@ protected PSurface initSurface(Color backgroundColor, int displayIndex,
94829482
//System.out.println("interrupt");
94839483
}
94849484
}
9485-
System.out.println("out of default size loop, " + width + " " + height);
9485+
// System.out.println("out of default size loop, " + width + " " + height);
94869486
// convenience to avoid another 'get' from the static main() method
94879487
return surface;
94889488
}

core/src/processing/core/PSurfaceAWT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -803,13 +803,13 @@ protected void checkPause() {
803803
synchronized (pauseObject) {
804804
try {
805805
pauseObject.wait();
806-
PApplet.debug("out of wait");
806+
// PApplet.debug("out of wait");
807807
} catch (InterruptedException e) {
808808
// waiting for this interrupt on a start() (resume) call
809809
}
810810
}
811811
}
812-
PApplet.debug("done with pause");
812+
// PApplet.debug("done with pause");
813813
}
814814

815815

0 commit comments

Comments
 (0)