From 0eb623afd51eaad4acecd055bf4ff6892f80e909 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 18 May 2005 08:42:17 +0000 Subject: [PATCH] Use NodeManager.getRootNode() to get our root node. --- src/helma/framework/core/Application.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 1ab4097d..f6f631f7 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -770,7 +770,7 @@ public final class Application implements IPathElement, Runnable { } // no custom root object is defined - use standard helma objectmodel else { - return nmgr.safe.getNode(rootId, rootMapping); + return nmgr.safe.getRootNode(); } }