mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
removing debug info from run as external applet
This commit is contained in:
@@ -330,8 +330,8 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
processOutput.flush();
|
||||
|
||||
} catch (IOException e) {
|
||||
System.err.println("error stopping external applet");
|
||||
e.printStackTrace();
|
||||
//System.err.println("error stopping external applet");
|
||||
//e.printStackTrace();
|
||||
close();
|
||||
}
|
||||
|
||||
@@ -366,8 +366,8 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
try {
|
||||
process.destroy();
|
||||
} catch (Exception e) {
|
||||
System.err.println("(ignored) error while destroying");
|
||||
e.printStackTrace();
|
||||
//System.err.println("(ignored) error while destroying");
|
||||
//e.printStackTrace();
|
||||
}
|
||||
process = null;
|
||||
}
|
||||
@@ -377,7 +377,7 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
public void message(String s) {
|
||||
if (s.indexOf(BApplet.EXTERNAL_QUIT) == 0) {
|
||||
//close();
|
||||
System.out.println("got proper quit message");
|
||||
//System.out.println("got proper quit message");
|
||||
editor.doClose();
|
||||
return;
|
||||
}
|
||||
|
||||
15
todo.txt
15
todo.txt
@@ -9,11 +9,18 @@ X need to move both to BApplet.paint()
|
||||
|
||||
_ external applet stuff
|
||||
X set initial position of external applets via BApplet
|
||||
X closing window doesn't disable the stop button
|
||||
X hitting 'stop' should freeze applet, not close window
|
||||
o what was the random NullPointerException
|
||||
|
||||
_ 'add files' for .class, .jar should drop the stuff in
|
||||
_ send messages for window location
|
||||
_ closing window doesn't disable the stop button
|
||||
_ hitting 'stop' should freeze applet, not close window
|
||||
_ what was the random NullPointerException
|
||||
_ 'add files' for .class, .zip, .jar should drop the stuff in
|
||||
_ external classes using loadStream, etc have trouble
|
||||
|
||||
_ history could be gzipped and appended to history.dat
|
||||
_ along with another file that is actually a table of offsets
|
||||
_ no need to make the thing a gzip stream
|
||||
_ checkbox on menu for 'record history' ?
|
||||
|
||||
_ jikes errors are missing newline/linefeed ?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user