Do not create applications with "." in the application name
when apps.properties is modified.
This commit is contained in:
parent
8ee53d5a25
commit
7088254cb1
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class ApplicationManager {
|
||||||
try {
|
try {
|
||||||
for (Enumeration e = props.keys(); e.hasMoreElements (); ) {
|
for (Enumeration e = props.keys(); e.hasMoreElements (); ) {
|
||||||
String appName = (String) e.nextElement ();
|
String appName = (String) e.nextElement ();
|
||||||
if (applications.get (appName) == null) {
|
if (appName.indexOf (".") == -1 && applications.get (appName) == null) {
|
||||||
start (appName);
|
start (appName);
|
||||||
register (appName);
|
register (appName);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue