another small change on bootstrap

This commit is contained in:
Clebert Suconic 2015-08-24 21:44:49 -04:00
parent cdc6133327
commit 7dfde208ca
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ public class Artemis {
/** This is a good method for booting an embedded command */
public static void execute(File artemisHome, File artemisInstance, List<String> args) throws Throwable {
execute(artemisHome, artemisInstance, (String[]) args.toArray(new String[args.size()]));
public static Object execute(File artemisHome, File artemisInstance, List<String> args) throws Throwable {
return execute(artemisHome, artemisInstance, (String[]) args.toArray(new String[args.size()]));
}
/** This is a good method for booting an embedded command */