1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 21:45:22 +02:00

Pass an array of String.

This commit is contained in:
Alain Magloire 2002-09-03 04:14:24 +00:00
parent 335886f307
commit f309922d7c

View file

@ -42,7 +42,7 @@ public class RuntimeOptions implements ICDIRuntimeOptions {
} }
MISession mi = session.getMISession(); MISession mi = session.getMISession();
CommandFactory factory = mi.getCommandFactory(); CommandFactory factory = mi.getCommandFactory();
MIExecArguments arguments = factory.createMIExecArguments(args); MIExecArguments arguments = factory.createMIExecArguments(new String[]{args});
try { try {
mi.postCommand(arguments); mi.postCommand(arguments);
MIInfo info = arguments.getMIInfo(); MIInfo info = arguments.getMIInfo();