Renaming _responseBody ivar to _responseData
This commit is contained in:
parent
ccdc5f2d9b
commit
c2e5ca2726
2 changed files with 3 additions and 3 deletions
|
|
@ -49,7 +49,7 @@ extern NSString * const AFNetworkingOperationDidFinishNotification;
|
|||
NSHTTPURLResponse *_response;
|
||||
NSError *_error;
|
||||
|
||||
NSData *_responseBody;
|
||||
NSData *_responseData;
|
||||
NSInteger _totalBytesRead;
|
||||
NSMutableData *_dataAccumulator;
|
||||
NSOutputStream *_outputStream;
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ static inline NSString * AFKeyPathFromOperationState(AFOperationState state) {
|
|||
@synthesize request = _request;
|
||||
@synthesize response = _response;
|
||||
@synthesize error = _error;
|
||||
@synthesize responseData = _responseBody;
|
||||
@synthesize responseData = _responseData;
|
||||
@synthesize responseString = _responseString;
|
||||
@synthesize totalBytesRead = _totalBytesRead;
|
||||
@synthesize dataAccumulator = _dataAccumulator;
|
||||
|
|
@ -129,7 +129,7 @@ static inline NSString * AFKeyPathFromOperationState(AFOperationState state) {
|
|||
[_response release];
|
||||
[_error release];
|
||||
|
||||
[_responseBody release];
|
||||
[_responseData release];
|
||||
[_responseString release];
|
||||
[_dataAccumulator release];
|
||||
[_outputStream release]; _outputStream = nil;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue