Skip to content

Commit

Permalink
Ok Object of boxed false will not be null...derp
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed Oct 7, 2014
1 parent 0f9cb24 commit c47d195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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
Expand Down
Expand Up @@ -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
Expand Down

0 comments on commit c47d195

Please sign in to comment.