Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -163,7 +163,7 @@ public Object execute(IRScope scope, Object... data) {

@Override
public Object previouslyRun(IRScope scope) {
return scope.hasExplicitCallProtocol();
return scope.hasExplicitCallProtocol() ? new Object() : null;
}

@Override
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ public Object execute(IRScope s, Object... data) {

@Override
public Object previouslyRun(IRScope scope) {
return scope.hasHasOptimizedTemporaryVariables();
return scope.hasHasOptimizedTemporaryVariables() ? new Object() : null;
}

@Override

0 comments on commit c47d195

Please sign in to comment.