* Fix copy/paste error: trying to cast instance variable to NodeHandle instead of argument.

This commit is contained in:
hns 2006-02-06 10:35:43 +00:00
parent d1279f6d41
commit cf875fbf48

View file

@ -847,7 +847,7 @@ public final class RequestEvaluator implements Runnable {
initObjects(functionName, INTERNAL, RequestTrans.INTERNAL); initObjects(functionName, INTERNAL, RequestTrans.INTERNAL);
// if object is an instance of NodeHandle, get the node object itself. // if object is an instance of NodeHandle, get the node object itself.
if (object instanceof NodeHandle) { 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 no valid node object return immediately
if (object == null) { if (object == null) {
return null; return null;