From 3497250607f733738ab730572b08e8ef16457097 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Sat, 7 Sep 2002 14:47:25 +0000 Subject: [PATCH] comment out the exception printstackTrace. --- .../src/org/eclipse/cdt/debug/mi/core/MIInferior.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIInferior.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIInferior.java index 1f44da70f88..59ee7f19ada 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIInferior.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIInferior.java @@ -222,7 +222,7 @@ public class MIInferior extends Process { inPiped = null; } } catch (IOException e) { - e.printStackTrace(); + //e.printStackTrace(); } try { if (errPiped != null) { @@ -230,7 +230,7 @@ public class MIInferior extends Process { errPiped = null; } } catch (IOException e) { - e.printStackTrace(); + //e.printStackTrace(); } // If pty is not null then we are using a master/slave terminal @@ -240,7 +240,7 @@ public class MIInferior extends Process { try { in.close(); } catch (IOException e) { - e.printStackTrace(); + //e.printStackTrace(); } in = null; } @@ -248,7 +248,7 @@ public class MIInferior extends Process { try { out.close(); } catch (IOException e) { - e.printStackTrace(); + //e.printStackTrace(); } out = null; }