From 0aed9bbdc51c96b2137ce5e90679622614742a0e Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 10 Apr 2006 10:07:42 +0000 Subject: [PATCH] * minor fixes and beautification. --- src/helma/scripting/rhino/HopObject.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/helma/scripting/rhino/HopObject.java b/src/helma/scripting/rhino/HopObject.java index 54cf1e52..0d9601b0 100644 --- a/src/helma/scripting/rhino/HopObject.java +++ b/src/helma/scripting/rhino/HopObject.java @@ -16,8 +16,6 @@ package helma.scripting.rhino; -import helma.scripting.ScriptingException; -import helma.scripting.ScriptingEngine; import helma.framework.core.*; import helma.framework.ResponseTrans; import helma.framework.repository.Resource; @@ -26,7 +24,6 @@ import helma.objectmodel.db.*; import org.mozilla.javascript.*; import java.lang.reflect.Method; -import java.lang.reflect.Constructor; import java.util.*; import java.io.UnsupportedEncodingException; import java.io.IOException; @@ -1075,6 +1072,6 @@ public class HopObject extends ScriptableObject implements Wrapper, PropertyReco "getOrderedView only callable on already existing subnode-collections"); } return new ListViewWrapper (subnodes.getOrderedView(expr), - core, n.getDbMapping().getWrappedNodeManager(), this); + core, core.app.getWrappedNodeManager(), this); } }