Code review undo

This commit is contained in:
Scott Pfeil 2023-08-29 17:38:10 -04:00
parent 4542e82060
commit dc0be54444
2 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,7 @@
@property (nullable, strong, nonatomic) MVMCoreLoadObject *loadObject; @property (nullable, strong, nonatomic) MVMCoreLoadObject *loadObject;
@property (nullable, strong, nonatomic) NSDictionary *dataForPage; @property (nullable, strong, nonatomic) NSDictionary *dataForPage;
@property (nullable, strong, nonatomic) DelegateObject *delegateObject; @property (nullable, strong, nonatomic) DelegateObject *delegateObject;
@property (nullable, nonatomic) NSURLSessionTask *sessionTask; @property (nullable, nonatomic, readonly) NSURLSessionTask *sessionTask;
@property (nullable, nonatomic, readonly) NSString *finalLoadSource; @property (nullable, nonatomic, readonly) NSString *finalLoadSource;
@property (nonatomic) BOOL backgroundLoad; @property (nonatomic) BOOL backgroundLoad;
@property (nonatomic, getter=areDependenciesAdded) BOOL dependenciesAdded; @property (nonatomic, getter=areDependenciesAdded) BOOL dependenciesAdded;

View File

@ -28,6 +28,8 @@
@interface MVMCoreLoadRequestOperation () @interface MVMCoreLoadRequestOperation ()
@property (weak, nonatomic) NSURLSessionTask *sessionTask;
// For temporarily storing any alert to show until we determine it's delegate. // For temporarily storing any alert to show until we determine it's delegate.
@property (nonatomic, readwrite) BOOL alertToShow; @property (nonatomic, readwrite) BOOL alertToShow;
@property (strong, nonatomic, nullable) MVMCoreErrorObject *errorForAlertToShow; @property (strong, nonatomic, nullable) MVMCoreErrorObject *errorForAlertToShow;