If we use javaw.exe on Windows, we get a pop-up error when the JVM fails to

initialize.  Use java.exe instead when we try the optimum arguments.
This commit is contained in:
Andrzej Kapolka
2011-11-10 00:20:19 +00:00
parent f6ee755b97
commit 7baaa1bbdd
@@ -797,7 +797,7 @@ public class Application
ArrayList<String> args = new ArrayList<String>(); ArrayList<String> args = new ArrayList<String>();
// reconstruct the path to the JVM // reconstruct the path to the JVM
args.add(LaunchUtil.getJVMPath(_appdir, _windebug)); args.add(LaunchUtil.getJVMPath(_appdir, _windebug || optimum));
// add the classpath arguments // add the classpath arguments
args.add("-classpath"); args.add("-classpath");