Renaming _responseBody ivar to _responseData

This commit is contained in:
Mattt Thompson 2011-10-05 12:47:51 -05:00
parent ccdc5f2d9b
commit c2e5ca2726
2 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ extern NSString * const AFNetworkingOperationDidFinishNotification;
NSHTTPURLResponse *_response; NSHTTPURLResponse *_response;
NSError *_error; NSError *_error;
NSData *_responseBody; NSData *_responseData;
NSInteger _totalBytesRead; NSInteger _totalBytesRead;
NSMutableData *_dataAccumulator; NSMutableData *_dataAccumulator;
NSOutputStream *_outputStream; NSOutputStream *_outputStream;

View file

@ -78,7 +78,7 @@ static inline NSString * AFKeyPathFromOperationState(AFOperationState state) {
@synthesize request = _request; @synthesize request = _request;
@synthesize response = _response; @synthesize response = _response;
@synthesize error = _error; @synthesize error = _error;
@synthesize responseData = _responseBody; @synthesize responseData = _responseData;
@synthesize responseString = _responseString; @synthesize responseString = _responseString;
@synthesize totalBytesRead = _totalBytesRead; @synthesize totalBytesRead = _totalBytesRead;
@synthesize dataAccumulator = _dataAccumulator; @synthesize dataAccumulator = _dataAccumulator;
@ -129,7 +129,7 @@ static inline NSString * AFKeyPathFromOperationState(AFOperationState state) {
[_response release]; [_response release];
[_error release]; [_error release];
[_responseBody release]; [_responseData release];
[_responseString release]; [_responseString release];
[_dataAccumulator release]; [_dataAccumulator release];
[_outputStream release]; _outputStream = nil; [_outputStream release]; _outputStream = nil;