1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Remove unused argument

This commit is contained in:
Alain Magloire 2003-11-20 21:46:34 +00:00
parent 3ab52b92d7
commit 1e5198e7ca

View file

@ -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() {