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