Remove -setNilValueForKey: hack

This commit is contained in:
Justin Spahr-Summers
2013-07-18 12:29:37 -07:00
parent 8fdcb5d919
commit aae1bcf40f

View File

@@ -163,11 +163,4 @@ static const NSTimeInterval RVMViewModelInactiveThrottleInterval = 1;
return [super automaticallyNotifiesObserversForKey:key];
}
- (void)setNilValueForKey:(NSString *)key {
// Ignore attempts to set primitive properties to nil. This is commonly
// caused by RACObserve noticing an intermediate key change.
//
// See https://github.com/ReactiveCocoa/ReactiveCocoa/issues/631.
}
@end