Merge branch 'bugfix/nullability_correction' into 'develop'

nullability change

See merge request BPHV_MIPS/mvm_core!168
This commit is contained in:
Pfeil, Scott Robert 2021-07-22 19:56:03 +00:00
commit 8a391fe715

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