Removing whitespace leftover in dealloc from migration
This commit is contained in:
parent
2b2317907e
commit
ae340b19e9
3 changed files with 0 additions and 11 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue