From 4889f5df56a5ec98369b955e9dfdb5d711b7f672 Mon Sep 17 00:00:00 2001 From: James Treanor Date: Tue, 16 Apr 2019 11:10:09 +0100 Subject: [PATCH] Fix nullability warnings in RCTExceptionsManager --- React/Modules/RCTExceptionsManager.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/React/Modules/RCTExceptionsManager.h b/React/Modules/RCTExceptionsManager.h index 3574bc71b4c3d3..0e4489c57f93ba 100644 --- a/React/Modules/RCTExceptionsManager.h +++ b/React/Modules/RCTExceptionsManager.h @@ -9,13 +9,15 @@ #import +NS_ASSUME_NONNULL_BEGIN + @protocol RCTExceptionsManagerDelegate -- (void)handleSoftJSExceptionWithMessage:(NSString *)message stack:(NSArray *)stack exceptionId:(NSNumber *)exceptionId; -- (void)handleFatalJSExceptionWithMessage:(NSString *)message stack:(NSArray *)stack exceptionId:(NSNumber *)exceptionId; +- (void)handleSoftJSExceptionWithMessage:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId; +- (void)handleFatalJSExceptionWithMessage:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId; @optional -- (void)updateJSExceptionWithMessage:(NSString *)message stack:(NSArray *)stack exceptionId:(NSNumber *)exceptionId; +- (void)updateJSExceptionWithMessage:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId; @end @@ -23,11 +25,13 @@ - (instancetype)initWithDelegate:(id)delegate; -- (void)reportSoftException:(NSString *)message stack:(NSArray *)stack exceptionId:(nonnull NSNumber *)exceptionId; -- (void)reportFatalException:(NSString *)message stack:(NSArray *)stack exceptionId:(nonnull NSNumber *)exceptionId; +- (void)reportSoftException:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId; +- (void)reportFatalException:(nullable NSString *)message stack:(nullable NSArray *)stack exceptionId:(NSNumber *)exceptionId; @property (nonatomic, weak) id delegate; @property (nonatomic, assign) NSUInteger maxReloadAttempts; @end + +NS_ASSUME_NONNULL_END