Removing whitespace leftover in dealloc from migration

This commit is contained in:
Mattt Thompson 2012-07-03 07:20:15 -07:00
parent 2b2317907e
commit ae340b19e9
3 changed files with 0 additions and 11 deletions

View file

@ -283,8 +283,6 @@ static NSString * AFPropertyListStringFromParameters(NSDictionary *parameters) {
#ifdef _SYSTEMCONFIGURATION_H #ifdef _SYSTEMCONFIGURATION_H
[self stopMonitoringNetworkReachability]; [self stopMonitoringNetworkReachability];
#endif #endif
} }
- (NSString *)description { - (NSString *)description {

View file

@ -128,7 +128,6 @@ NSString * AFCreateIncompleteDownloadDirectoryPath(void) {
@dynamic response; @dynamic response;
- (void)dealloc { - (void)dealloc {
if (_successCallbackQueue) { if (_successCallbackQueue) {
dispatch_release(_successCallbackQueue); dispatch_release(_successCallbackQueue);
_successCallbackQueue = NULL; _successCallbackQueue = NULL;
@ -138,7 +137,6 @@ NSString * AFCreateIncompleteDownloadDirectoryPath(void) {
dispatch_release(_failureCallbackQueue); dispatch_release(_failureCallbackQueue);
_failureCallbackQueue = NULL; _failureCallbackQueue = NULL;
} }
} }
- (NSError *)error { - (NSError *)error {

View file

@ -186,10 +186,6 @@ static inline BOOL AFStateTransitionIsValid(AFOperationState fromState, AFOperat
} }
- (void)dealloc { - (void)dealloc {
if (_outputStream) { if (_outputStream) {
[_outputStream close]; [_outputStream close];
_outputStream = nil; _outputStream = nil;
@ -201,9 +197,6 @@ static inline BOOL AFStateTransitionIsValid(AFOperationState fromState, AFOperat
_backgroundTaskIdentifier = UIBackgroundTaskInvalid; _backgroundTaskIdentifier = UIBackgroundTaskInvalid;
} }
#endif #endif
} }
- (NSString *)description { - (NSString *)description {