removing Argv (for the moment)

This commit is contained in:
Doug MacEachern 2008-03-27 01:07:17 +00:00
parent 4d960ecb0b
commit 974f80e18f
1 changed files with 0 additions and 8 deletions

View File

@ -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;
} }