Removed boolean self parameter from calls of start() and register()
methods in ApplicationManager.
This commit is contained in:
parent
5b7495dca3
commit
2896aaf82c
1 changed files with 3 additions and 3 deletions
|
@ -363,12 +363,12 @@ import com.sleepycat.db.*;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void startApplication(String name) {
|
public void startApplication(String name) {
|
||||||
appManager.start(name,false);
|
appManager.start (name);
|
||||||
appManager.register(name,false);
|
appManager.register (name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stopApplication(String name) {
|
public void stopApplication(String name) {
|
||||||
appManager.stop(name);
|
appManager.stop (name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue