From 750e09d84464b3d266fda3fc551591aff8cfe14c Mon Sep 17 00:00:00 2001 From: benfry Date: Sat, 9 Oct 2004 15:24:30 +0000 Subject: [PATCH] suppress error message --- processing/app/PdeRuntime.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/processing/app/PdeRuntime.java b/processing/app/PdeRuntime.java index e8596b465..2689e50e8 100644 --- a/processing/app/PdeRuntime.java +++ b/processing/app/PdeRuntime.java @@ -576,7 +576,9 @@ java.lang.NullPointerException } catch (Exception e) { //System.out.println("SystemOutSiphon: i just died in your arms tonight"); - e.printStackTrace(); + // on mac os x, this will spew a "Bad File Descriptor" ex + // each time an external app is shut down. + //e.printStackTrace(); thread = null; //System.out.println(""); }