Skip to content

Commit

Permalink
Merge pull request #158 from trask/fix-suggestions-npe
Browse files Browse the repository at this point in the history
Fix suggestions NullPointerException. Thanks for the PR!
  • Loading branch information
chriswhocodes committed Mar 29, 2015
2 parents ad399bd + 8bc71e4 commit 7d028fb
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -207,7 +207,9 @@ private void processParseTag(Tag parseTag, IMetaMember caller, IParseDictionary
{
String callerID = attrs.get(ATTR_METHOD);
IMetaMember nestedCaller = ParseUtil.lookupMember(callerID, parseDictionary, model);
processParseTag(child, nestedCaller, parseDictionary);
if (nestedCaller != null) {
processParseTag(child, nestedCaller, parseDictionary);
}
}

default:
Expand Down

0 comments on commit 7d028fb

Please sign in to comment.