Skip to content

Commit

Permalink
Fix suggestions NullPointerException
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Mar 29, 2015
1 parent ad399bd commit 8bc71e4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
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 8bc71e4

Please sign in to comment.