Skip to content

Commit

Permalink
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -39,10 +39,8 @@ public CachedBooleanDispatchNode(
Object cachedName,
DispatchNode next,
Assumption falseUnmodifiedAssumption,
Object falseValue,
InternalMethod falseMethod,
Assumption trueUnmodifiedAssumption,
Object trueValue,
InternalMethod trueMethod,
DispatchAction dispatchAction) {
super(context, cachedName, next, dispatchAction);
Original file line number Diff line number Diff line change
@@ -142,8 +142,9 @@ private DispatchNode doUnboxedObject(

return new CachedBooleanDispatchNode(getContext(),
methodName, first,
falseUnmodifiedAssumption, null, falseMethod,
trueUnmodifiedAssumption, null, trueMethod, getDispatchAction());
falseUnmodifiedAssumption, falseMethod,
trueUnmodifiedAssumption, trueMethod,
getDispatchAction());
} else {
return new CachedUnboxedDispatchNode(getContext(),
methodName, first, receiverObject.getClass(),

0 comments on commit ef2caaa

Please sign in to comment.