From 1e5198e7ca97ce00fb027d0229616d13a238ac79 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 20 Nov 2003 21:46:34 +0000 Subject: [PATCH] Remove unused argument --- .../src/org/eclipse/cdt/debug/mi/core/MIPlugin.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIPlugin.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIPlugin.java index 3ff5eda8587..4f8afdc184a 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIPlugin.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/MIPlugin.java @@ -136,7 +136,7 @@ public class MIPlugin extends Plugin { } } - Process pgdb = getGDBProcess(args, program); + Process pgdb = getGDBProcess(args); MISession session; try { @@ -187,7 +187,7 @@ public class MIPlugin extends Plugin { } else { args = new String[] {gdb, "--cd="+cwd.getAbsolutePath(), "--command="+gdbinit, "--quiet", "-nw", "-i", "mi1", "-c", core.getAbsolutePath(), program.getAbsolutePath()}; } - Process pgdb = getGDBProcess(args, program); + Process pgdb = getGDBProcess(args); MISession session; try { session = createMISession(pgdb, null, MISession.CORE); @@ -220,7 +220,7 @@ public class MIPlugin extends Plugin { } else { args = new String[] {gdb, "--cd="+cwd.getAbsolutePath(), "--command="+gdbinit, "--quiet", "-nw", "-i", "mi1", program.getAbsolutePath()}; } - Process pgdb = getGDBProcess(args, program); + Process pgdb = getGDBProcess(args); MISession session; try { session = createMISession(pgdb, null, MISession.ATTACH); @@ -293,11 +293,10 @@ public class MIPlugin extends Plugin { * Do some basic synchronisation, gdb make take some time to load * for whatever reasons. * @param args - * @param program * @return Process * @throws IOException */ - protected Process getGDBProcess(String[] args, File program) throws IOException { + protected Process getGDBProcess(String[] args) throws IOException { final Process pgdb = ProcessFactory.getFactory().exec(args); Thread syncStartup = new Thread("GDB Start") { public void run() {