Skip to content

Commit

Permalink
Fixed a bug which caused the first protocol token in a @Property of t…
Browse files Browse the repository at this point in the history
…ype `id<...>` to not be parsed. Closes Issue tomaz#218
  • Loading branch information
mattrubin committed Jul 2, 2012
1 parent f53b1aa commit fe280df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Model/GBMethodData.m
Expand Up @@ -74,7 +74,6 @@ + (id)propertyDataWithAttributes:(NSArray *)attributes components:(NSArray *)com
nextComponentIsPropertyName = YES;
} else if ([component isEqualToString:@"id"]) {
[results addObject:component];
nextComponentIsPropertyName = YES;
} else if ([component isMatchedByRegex:@"^[_a-zA-Z][_a-zA-Z0-9]$"]) {
if (results.count == 0 || inProtocolsList) {
[results addObject:component];
Expand Down

0 comments on commit fe280df

Please sign in to comment.