From da3af0cadebdb8b81c36d7d3fcf837bae9ddb69c Mon Sep 17 00:00:00 2001 From: Adlai Holler Date: Tue, 16 Feb 2016 19:47:08 -0800 Subject: [PATCH] Remove null handling docs for nonnull argument --- AsyncDisplayKit/Details/ASImageProtocols.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AsyncDisplayKit/Details/ASImageProtocols.h b/AsyncDisplayKit/Details/ASImageProtocols.h index eb3690023f..46811e88c6 100644 --- a/AsyncDisplayKit/Details/ASImageProtocols.h +++ b/AsyncDisplayKit/Details/ASImageProtocols.h @@ -20,8 +20,7 @@ typedef void(^ASImageCacherCompletion)(UIImage * _Nullable imageFromCache); /** @abstract Attempts to fetch an image with the given URL from the cache. @param URL The URL of the image to retrieve from the cache. - @param callbackQueue The queue to call `completion` on. If this value is nil, @{ref completion} will be invoked on the - main-queue. + @param callbackQueue The queue to call `completion` on. @param completion The block to be called when the cache has either hit or missed. @param imageFromCache The image that was retrieved from the cache, if the image could be retrieved; nil otherwise. @discussion If `URL` is nil, `completion` will be invoked immediately with a nil image. This method should not block