nullability change

This commit is contained in:
Pfeil, Scott Robert 2021-07-22 15:49:33 -04:00
parent 0456733325
commit 83b49a69a2

View File

@ -16,7 +16,7 @@
@property (nullable, strong, nonatomic) NSString *pageType;
// This view controller should subclass this function and check the load to make sure it has all the needed data. Fills the error object if there are any errors. Returns if we should finish the load or not. Ideally error should use code ErrorCodeViewControllerProcessingJSON.
- (BOOL)shouldFinishProcessingLoad:(nonnull MVMCoreLoadObject *)loadObject error:(MVMCoreErrorObject *_Nonnull *_Nonnull)error;
- (BOOL)shouldFinishProcessingLoad:(nonnull MVMCoreLoadObject *)loadObject error:(MVMCoreErrorObject *_Nullable *_Nonnull)error;
@optional