From cf875fbf48df1a2fdc9c60cad2917106849c50c7 Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 6 Feb 2006 10:35:43 +0000 Subject: [PATCH] * Fix copy/paste error: trying to cast instance variable to NodeHandle instead of argument. --- src/helma/framework/core/RequestEvaluator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index cd1ef1ea..e7a587e5 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -847,7 +847,7 @@ public final class RequestEvaluator implements Runnable { initObjects(functionName, INTERNAL, RequestTrans.INTERNAL); // if object is an instance of NodeHandle, get the node object itself. if (object instanceof NodeHandle) { - object = ((NodeHandle) thisObject).getNode(app.nmgr.safe); + object = ((NodeHandle) object).getNode(app.nmgr.safe); // If no valid node object return immediately if (object == null) { return null;