From aae1bcf40f589195f7ed4ba48976ab96ce929271 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Thu, 18 Jul 2013 12:29:37 -0700 Subject: [PATCH] Remove -setNilValueForKey: hack --- ReactiveViewModel/RVMViewModel.m | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ReactiveViewModel/RVMViewModel.m b/ReactiveViewModel/RVMViewModel.m index 195380e..fd595c3 100644 --- a/ReactiveViewModel/RVMViewModel.m +++ b/ReactiveViewModel/RVMViewModel.m @@ -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