Merge pull request #1 from jakemarsh/patch-1

Adding missing dealloc method in AFImageRequestOperation
This commit is contained in:
Mattt Thompson 2011-06-04 09:14:51 -07:00
commit ba98a2aff4

View file

@ -123,6 +123,12 @@ static inline CGSize kAFImageRequestRoundedCornerRadii(CGSize imageSize) {
}
}
- (void) dealloc {
[_callback release];
[super dealloc];
}
@end
#pragma mark - AFHTTPOperationCallback