Merge pull request #963 from dmishe/make_entity_property_readwrite

Make entity property readwrite
This commit is contained in:
Blake Watters
2012-10-01 14:49:12 -07:00
3 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@
/**
The Core Data entity description used for this object mapping
*/
@property (nonatomic, strong, readonly) NSEntityDescription *entity;
@property (nonatomic, strong) NSEntityDescription *entity;
/**
The name of the attribute on the destination entity that acts as the primary key for instances

View File

@@ -33,7 +33,6 @@
@interface RKEntityMapping ()
@property (nonatomic, weak, readwrite) Class objectClass;
@property (nonatomic, strong, readwrite) NSEntityDescription *entity;
@property (nonatomic, strong) NSMutableArray *mutableConnections;
@end