From ca739c8443f946921ade611ddb75bb622df485ac Mon Sep 17 00:00:00 2001 From: toshihiro Date: Sat, 7 Jul 2007 06:24:54 +0000 Subject: [PATCH] Avoid terminating process at inappropriate state. It breaks console output. (with DBG 2.15.5) --- .../phpdt/internal/debug/core/PHPDBGProxy.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java index 5c5b26b..96919b2 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java @@ -86,13 +86,13 @@ public class PHPDBGProxy { DBGInt.setShouldStop (); // Notify the DBG interface to stop the waiting for response } - if (!remote) { // If it's not a remote proxy session - try { - getDebugTarget ().getProcess ().terminate (); // - } catch (DebugException e) { - e.printStackTrace (); - } - } +// if (!remote) { // If it's not a remote proxy session +// try { +// getDebugTarget ().getProcess ().terminate (); // +// } catch (DebugException e) { +// e.printStackTrace (); +// } +// } phpLoop.notifyWait (); } -- 1.7.1