mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
EA-35929 - CRE: CommandLineBuilder.compute
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user