From fe280dfc9cd949ab171ebd3c2cac671bcc2dea61 Mon Sep 17 00:00:00 2001 From: Matt Rubin Date: Mon, 2 Jul 2012 04:16:42 -0300 Subject: [PATCH] Fixed a bug which caused the first protocol token in a @property of type `id<...>` to not be parsed. Closes Issue #218 --- Model/GBMethodData.m | 1 - 1 file changed, 1 deletion(-) diff --git a/Model/GBMethodData.m b/Model/GBMethodData.m index 8e9d7f6b..d8ed25aa 100644 --- a/Model/GBMethodData.m +++ b/Model/GBMethodData.m @@ -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];