removing debug info from run as external applet

This commit is contained in:
benfry
2003-09-26 19:29:20 +00:00
parent 4f5f7e994c
commit c4c42f47bb
2 changed files with 16 additions and 9 deletions

View File

@@ -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;
}

View File

@@ -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 ?