aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMNSObject+KeyValueObserving.h
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2016-05-24 10:02:33 -0400
committerGravatar Thomas Van Lenten <thomasvl@google.com>2016-05-24 10:02:33 -0400
commit911c457618377e675bbc89abbda97ffc13af1306 (patch)
tree900862a07c3487b75cb571b526f7e183715e398e /Foundation/GTMNSObject+KeyValueObserving.h
parent45ef69578f7f36dd200edd894b53bc1ab55becc7 (diff)
Remove GTM_PERFORM_KVO_CHECKS.
They have become too invasive and cause more issues than they were solving, especially on iOS where they seem to interact very badly with the accessibility provided by the OS.
Diffstat (limited to 'Foundation/GTMNSObject+KeyValueObserving.h')
-rw-r--r--Foundation/GTMNSObject+KeyValueObserving.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Foundation/GTMNSObject+KeyValueObserving.h b/Foundation/GTMNSObject+KeyValueObserving.h
index 079717f..9aa1fbb 100644
--- a/Foundation/GTMNSObject+KeyValueObserving.h
+++ b/Foundation/GTMNSObject+KeyValueObserving.h
@@ -32,12 +32,6 @@
#import <Foundation/Foundation.h>
-#ifndef GTM_PERFORM_KVO_CHECKS
-// Controls whether KVO checking code is on in debug. See
-// GTMNSObject+KeyValueObserving.m for details
-#define GTM_PERFORM_KVO_CHECKS 1
-#endif
-
// If you read the articles above you will see that doing KVO correctly
// is actually pretty tricky, and that Apple's documentation may not be
// completely clear as to how things should be used. Use the methods below