Use a helma.util.SystemMap for app.modules so it is wrapped by the scripting engine

as native object.
This commit is contained in:
hns 2003-06-20 14:42:49 +00:00
parent 6f2647712d
commit 358d59fc40

View file

@ -89,7 +89,7 @@ public final class Application implements IPathElement, Runnable {
Hashtable dbSources;
// map of app modules reflected at app.modules
Hashtable modules;
Map modules;
// internal worker thread for scheduler, session cleanup etc.
Thread worker;
@ -249,7 +249,7 @@ public final class Application implements IPathElement, Runnable {
sessions = new Hashtable();
dbSources = new Hashtable();
modules = new Hashtable();
modules = new SystemMap();
cachenode = new TransientNode("app");
}