Renamed JavaProcessBuilder -> JvmExecutor

This commit is contained in:
nathan 2017-07-15 23:53:51 +02:00
parent 38a6899049
commit 1554077d27

View File

@ -28,7 +28,7 @@ import dorkbox.util.OS;
* This will FORK the java process initially used to start the currently running JVM. Changing the java executable will change this behaviors * This will FORK the java process initially used to start the currently running JVM. Changing the java executable will change this behaviors
*/ */
public public
class JavaProcessBuilder extends ShellProcessBuilder { class JvmExecutor extends ShellExecutor {
/** /**
* The directory into which a local VM installation should be unpacked. * The directory into which a local VM installation should be unpacked.
@ -111,12 +111,12 @@ class JavaProcessBuilder extends ShellProcessBuilder {
private String jarFile; private String jarFile;
public public
JavaProcessBuilder() { JvmExecutor() {
super(null, null, null); super(null, null, null);
} }
public public
JavaProcessBuilder(InputStream in, PrintStream out, PrintStream err) { JvmExecutor(InputStream in, PrintStream out, PrintStream err) {
super(in, out, err); super(in, out, err);
} }