From f92e7d5a29bac51dece1cbf2bd4efeeab8bff2d5 Mon Sep 17 00:00:00 2001 From: Michael Schneider Date: Fri, 8 Apr 2016 14:50:31 -0700 Subject: [PATCH] Move completeBatchFetching: to deprecated location in header --- AsyncDisplayKit/Details/ASBatchContext.h | 25 +++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/AsyncDisplayKit/Details/ASBatchContext.h b/AsyncDisplayKit/Details/ASBatchContext.h index aace1facd2..f65c4060dd 100644 --- a/AsyncDisplayKit/Details/ASBatchContext.h +++ b/AsyncDisplayKit/Details/ASBatchContext.h @@ -22,17 +22,6 @@ NS_ASSUME_NONNULL_BEGIN */ - (BOOL)isFetching; -/** - * Let the context object know that a batch fetch was completed. - * - * @param didComplete A boolean that states whether or not the batch fetch completed. - * - * @discussion Only by passing YES will the owner of the context know to attempt another batch update when necessary. - * For instance, when a table has reached the end of its data, a batch fetch will be attempted unless the context - * object thinks that it is still fetching. - */ -- (void)completeBatchFetching:(BOOL)didComplete; - /** * Let the context object know that a batch fetch was completed. * @@ -67,6 +56,20 @@ NS_ASSUME_NONNULL_BEGIN */ - (void)beginBatchFetching; + +#pragma mark - Deprecated + +/** + * Let the context object know that a batch fetch was completed. + * + * @param didComplete A boolean that states whether or not the batch fetch completed. + * + * @discussion Only by passing YES will the owner of the context know to attempt another batch update when necessary. + * For instance, when a table has reached the end of its data, a batch fetch will be attempted unless the context + * object thinks that it is still fetching. + */ +- (void)completeBatchFetching:(BOOL)didComplete; + @end NS_ASSUME_NONNULL_END