removing Argv (for the moment)
This commit is contained in:
parent
4d960ecb0b
commit
974f80e18f
|
@ -116,7 +116,6 @@ public class ServiceConfig {
|
|||
String description;
|
||||
String password;
|
||||
String name;
|
||||
String[] argv = null;
|
||||
ServiceConfig() {}
|
||||
|
||||
public ServiceConfig(String name) {
|
||||
|
@ -144,13 +143,6 @@ public class ServiceConfig {
|
|||
this.path = path;
|
||||
}
|
||||
|
||||
public String[] getArgv() {
|
||||
if (this.argv == null) {
|
||||
this.argv = Win32.parseCommandLine(getPath());
|
||||
}
|
||||
return this.argv;
|
||||
}
|
||||
|
||||
public String getExe() {
|
||||
return this.exe;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue