Removed nullability attributes until Infer supports them

This commit is contained in:
Nick Lockwood
2015-06-11 10:42:00 -07:00
parent 61c1631cbd
commit 2ee8410a71
3 changed files with 3 additions and 18 deletions

View File

@@ -22,7 +22,7 @@
#import "RCTLog.h"
#import "RCTUtils.h"
static void RCTDispatchCallbackOnMainQueue(void (^ __nonnull callback)(NSError *, id), NSError *error, UIImage *image)
static void RCTDispatchCallbackOnMainQueue(void (^callback)(NSError *, id), NSError *error, UIImage *image)
{
if ([NSThread isMainThread]) {
callback(error, image);