* Fix copy/paste error: trying to cast instance variable to NodeHandle instead of argument.
This commit is contained in:
parent
d1279f6d41
commit
cf875fbf48
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue