From e439dde7186645864c5c775a3c79eda3e80fca7a Mon Sep 17 00:00:00 2001 From: Craig Gidney Date: Mon, 18 Nov 2013 17:44:10 -0400 Subject: [PATCH] Fixed 'implementing a method which will also be implemented by its primary class' warning The 'handleAction' method was declared in UIGestureRecognizer+'' but implemented by UIGestureRecognizer+FTBlockAdditions I fixed the warning by removing the apparently spurious declaration, and also the whole UIGestureRecognizer+'' declaration since it only had the one declaration and is not implemented anywhere. --- Classes/FTUtils+UIGestureRecognizer.m | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Classes/FTUtils+UIGestureRecognizer.m b/Classes/FTUtils+UIGestureRecognizer.m index 0d01de5..3c4383a 100644 --- a/Classes/FTUtils+UIGestureRecognizer.m +++ b/Classes/FTUtils+UIGestureRecognizer.m @@ -27,12 +27,6 @@ of this software and associated documentation files (the "Software"), to deal #import "FTUtils+UIGestureRecognizer.h" #import -@interface UIGestureRecognizer() - -- (void)handleAction:(UIGestureRecognizer *)recognizer; - -@end - static char * kFTGestureActionKey = "ft_gestureAction"; static char * kFTGestureDisabledKey = "ft_gestureDisabled"; @@ -73,4 +67,4 @@ - (void)setDisabled:(BOOL)disabled { @end -#endif \ No newline at end of file +#endif