Use a resource attribute instead of a param.

This commit is contained in:
Michael Bayne
2018-11-30 11:25:54 -08:00
parent 37b6575ca7
commit d7d937c2a1
4 changed files with 32 additions and 36 deletions
@@ -116,7 +116,7 @@ public abstract class Getdown extends Thread
} else if (_readyToInstall) {
log.info("Installing " + _toInstallResources.size() + " downloaded resources:");
for (Resource resource : _toInstallResources) {
resource.install(false);
resource.install();
}
_toInstallResources.clear();
_readyToInstall = false;
@@ -589,7 +589,7 @@ public abstract class Getdown extends Thread
reportTrackingEvent("jvm_unpack", -1);
updateStatus("m.unpacking_java");
vmjar.install(true);
vmjar.install();
// these only run on non-Windows platforms, so we use Unix file separators
String localJavaDir = LaunchUtil.LOCAL_JAVA_DIR + "/";