Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
[Issue #569] Adding missing ownership field in JSON properties
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Oct 9, 2012
1 parent bad206b commit cd2171c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AFNetworking/AFJSONRequestOperation.h
Expand Up @@ -44,7 +44,7 @@
/**
A JSON object constructed from the response data. If an error occurs while parsing, `nil` will be returned, and the `error` property will be set to the error.
*/
@property (readonly, nonatomic) id responseJSON;
@property (readonly, nonatomic, strong) id responseJSON;

///----------------------------------
/// @name Creating Request Operations
Expand Down
4 changes: 2 additions & 2 deletions AFNetworking/AFJSONRequestOperation.m
Expand Up @@ -32,8 +32,8 @@ static dispatch_queue_t json_request_operation_processing_queue() {
}

@interface AFJSONRequestOperation ()
@property (readwrite, nonatomic) id responseJSON;
@property (readwrite, nonatomic) NSError *JSONError;
@property (readwrite, nonatomic, strong) id responseJSON;
@property (readwrite, nonatomic, strong) NSError *JSONError;
@end

@implementation AFJSONRequestOperation
Expand Down

0 comments on commit cd2171c

Please sign in to comment.