no message
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package Visual_DVM_2021.Passes;
|
||||
import Common_old.Constants;
|
||||
import Common.CommonConstants;
|
||||
import _VisualDVM.Global;
|
||||
import Common_old.Utils.Utils;
|
||||
|
||||
@@ -11,13 +11,13 @@ import java.util.LinkedHashMap;
|
||||
import java.util.Vector;
|
||||
public abstract class ProcessPass<T> extends Pass_2021<T> {
|
||||
public Process process = null;
|
||||
public int exit_code = Constants.Nan;
|
||||
public int exit_code = CommonConstants.Nan;
|
||||
public LinkedHashMap<String, String> envs = new LinkedHashMap<>();
|
||||
public Vector<String> output = new Vector<>();
|
||||
protected String process_path = "";
|
||||
public void CreateProcess(String exec_path_in, File workspace, String ... command) throws Exception {
|
||||
output.clear();
|
||||
exit_code = Constants.Nan;
|
||||
exit_code = CommonConstants.Nan;
|
||||
process_path = exec_path_in;
|
||||
ProcessBuilder procBuilder = new ProcessBuilder(process_path);
|
||||
//-
|
||||
|
||||
Reference in New Issue
Block a user