EA-35929 - CRE: CommandLineBuilder.compute

This commit is contained in:
Sergey Evdokimov
2012-05-04 12:52:33 +04:00
parent d68f10a0a2
commit c76e9936db
@@ -429,13 +429,8 @@ public abstract class MvcFramework {
}
}
public static GeneralCommandLine createCommandLine(@NotNull JavaParameters params) {
try {
return CommandLineBuilder.createFromJavaParameters(params);
}
catch (CantRunException e) {
throw new RuntimeException(e);
}
public static GeneralCommandLine createCommandLine(@NotNull JavaParameters params) throws CantRunException {
return CommandLineBuilder.createFromJavaParameters(params);
}
private void extractPlugins(Project project, @Nullable VirtualFile pluginRoot, Map<String, VirtualFile> res) {