Commit 3c49ef5a by Brent Gulanowski

Remove unneeded methods.

parent ead632bb
......@@ -59,9 +59,6 @@ NS_ASSUME_NONNULL_BEGIN
- (void)willAccessValueForKey:(NSString *)key;
- (void)didAccessValueForKey:(NSString *)key;
- (nullable id)primitiveValueForKey:(NSString *)key;
- (void)setPrimitiveValue:(nullable id)value forKey:(NSString *)key;
@end
#endif
......
......@@ -174,20 +174,7 @@ static NSMutableDictionary *signatureCache;
#else
@implementation BUYObject (BUYManagedObjectConformance)
- (void)willAccessValueForKey:(NSString *)key {}
- (void)didAccessValueForKey:(NSString *)key {}
- (id)primitiveValueForKey:(NSString *)key
{
return [self valueForKey:key];
}
- (void)setPrimitiveValue:(id)value forKey:(NSString *)key
{
[self setValue:value forKey:key];
}
@end
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment