From 3cc3d633da84c3bf056c11fdc9578da2595c4c01 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Thu, 20 Mar 2008 13:00:11 +0000 Subject: [PATCH] Bug 223196 Removing the guard since it was wrong (== instead of !=) and it not useful --- .../src/org/eclipse/dd/gdb/service/command/GDBControl.java | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/org.eclipse.dd.gdb/src/org/eclipse/dd/gdb/service/command/GDBControl.java b/plugins/org.eclipse.dd.gdb/src/org/eclipse/dd/gdb/service/command/GDBControl.java index 0e33727fc38..e0f495eda4b 100644 --- a/plugins/org.eclipse.dd.gdb/src/org/eclipse/dd/gdb/service/command/GDBControl.java +++ b/plugins/org.eclipse.dd.gdb/src/org/eclipse/dd/gdb/service/command/GDBControl.java @@ -456,7 +456,6 @@ public class GDBControl extends AbstractMIControl { new Job("Terminating GDB process.") { //$NON-NLS-1$ @Override protected IStatus run(IProgressMonitor monitor) { - if (fProcess == null) fProcess.destroy(); int attempts = 0;