Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Merge pull request #511 from purenewman/patch-1
Browse files Browse the repository at this point in the history
Fixed incorrect null check
  • Loading branch information
siegfriedpammer committed Jan 4, 2016
2 parents bf10387 + f1f59d2 commit 79f9a95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public override void VisitIndexerExpression(IndexerExpression indexerExpression)
if (localResolveResult == null)
return;
var resolveResult = context.Resolve(indexerExpression);
if (localResolveResult == null)
if (resolveResult == null)
return;
var parent = indexerExpression.Parent;
while (parent is ParenthesizedExpression)
Expand Down

0 comments on commit 79f9a95

Please sign in to comment.