From 53f6dadbbb3e6768c837cf68fee3e1afd5dd5423 Mon Sep 17 00:00:00 2001 From: Garrett Moon Date: Fri, 11 Mar 2016 16:34:49 -0800 Subject: [PATCH] Should be nullable not _Nullable --- AsyncDisplayKit/Details/ASImageProtocols.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsyncDisplayKit/Details/ASImageProtocols.h b/AsyncDisplayKit/Details/ASImageProtocols.h index 365c374a00..25ee762862 100644 --- a/AsyncDisplayKit/Details/ASImageProtocols.h +++ b/AsyncDisplayKit/Details/ASImageProtocols.h @@ -28,7 +28,7 @@ typedef void(^ASImageCacherCompletion)(UIImage * _Nullable imageFromCache); the calling thread to fetch the image from a fast memory cache. It is OK to return nil from this method and instead support only cachedImageWithURL:callbackQueue:completion: however, synchronous rendering will not be possible. */ -- (_Nullable UIImage *)synchronouslyFetchedCachedImageWithURL:(NSURL *)URL; +- (nullable UIImage *)synchronouslyFetchedCachedImageWithURL:(NSURL *)URL; /** @abstract Attempts to fetch an image with the given URL from the cache.