From 3c005bb592c48aea7c3bd4712218c39d5951aef3 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Mon, 26 Aug 2002 05:25:26 +0000 Subject: [PATCH] Remove unecessary comments. --- .../src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java index 6b05259025b..a39f8ff59d2 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java @@ -20,7 +20,6 @@ public class GDBDebugger implements ICDebugger { return MIPlugin.getDefault().createCSession(exe.getLocation().toOSString()); } catch (IOException e) { - //throw new CDIException(new Status(0, MIPlugin.getDefault().getDescriptor().getUniqueIdentifier(), 0, "error", e)); throw new CDIException("Error initializing"); } } @@ -30,7 +29,6 @@ public class GDBDebugger implements ICDebugger { return MIPlugin.getDefault().createCSession(exe.getLocation().toOSString(), pid); } catch (IOException e) { - //throw new CDIException(new Status(0, MIPlugin.getDefault().getDescriptor().getUniqueIdentifier(), 0, "error", e)); throw new CDIException("Error initializing"); } } @@ -40,7 +38,6 @@ public class GDBDebugger implements ICDebugger { return MIPlugin.getDefault().createCSession(exe.getLocation().toOSString(), corefile.getLocation().toOSString()); } catch (IOException e) { - //throw new CDIException(new Status(0, MIPlugin.getDefault().getDescriptor().getUniqueIdentifier(), 0, "error", e)); throw new CDIException("Error initializing"); } }