Skip to content

Commit

Permalink
Use obj.isNull instead of ev.isNull.
Browse files Browse the repository at this point in the history
  • Loading branch information
ueshin committed Nov 17, 2016
1 parent e12a9bd commit 2c52d91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ case class Invoke(

val evaluateArguments = if (arguments.nonEmpty) {
s"""
if (!${ev.isNull}) {
if (!${obj.isNull}) {
$argCode
${ev.isNull} = $resultIsNull;
}
Expand Down

0 comments on commit 2c52d91

Please sign in to comment.