Skip to content

Commit

Permalink
fix #244
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaneberly committed Mar 7, 2017
1 parent 36e7feb commit 1c3c2d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected void addLocalVariable(final String variable, final Integer lineNo) {

protected void setLocalVariableLineNo(final String variable, final Integer lineNo) {
if (variable != null && localVariables.get(variable.toLowerCase()) != null) {
localVariables.get(variable).lineNumber=lineNo;
localVariables.get(variable.toLowerCase()).lineNumber=lineNo;
}
}

Expand Down

0 comments on commit 1c3c2d5

Please sign in to comment.