From c4c42f47bbb6c56ec9bb63fcd065b950ddd92d5d Mon Sep 17 00:00:00 2001 From: benfry Date: Fri, 26 Sep 2003 19:29:20 +0000 Subject: [PATCH] removing debug info from run as external applet --- app/PdeRuntime.java | 10 +++++----- todo.txt | 15 +++++++++++---- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/app/PdeRuntime.java b/app/PdeRuntime.java index 95ebc4a80..1c021162a 100644 --- a/app/PdeRuntime.java +++ b/app/PdeRuntime.java @@ -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; } diff --git a/todo.txt b/todo.txt index cdd58aa2d..d69d21f4f 100644 --- a/todo.txt +++ b/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 ?