Browse Source

Merge pull request #2577 from tangphillip/typo-fix

Typo fix
Mattt Thompson 10 years ago
parent
commit
4d635e38e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      AFNetworking/AFURLSessionManager.m

+ 1 - 1
AFNetworking/AFURLSessionManager.m

@@ -273,7 +273,7 @@ static inline void af_swizzleSelector(Class class, SEL originalSelector, SEL swi
 }
 
 static inline void af_addMethod(Class class, SEL selector, Method method) {
-    class_addMethod(class, @selector(af_resume),  method_getImplementation(method),  method_getTypeEncoding(method));
+    class_addMethod(class, selector,  method_getImplementation(method),  method_getTypeEncoding(method));
 }
 
 static NSString * const AFNSURLSessionTaskDidResumeNotification  = @"com.alamofire.networking.nsurlsessiontask.resume";