diff --git a/Sources/Sentry/SentryOptions.m b/Sources/Sentry/SentryOptions.m index 735fb8020f8..f3daedd6a9b 100644 --- a/Sources/Sentry/SentryOptions.m +++ b/Sources/Sentry/SentryOptions.m @@ -191,14 +191,6 @@ - (void)setDsn:(NSString *)dsn } } -- (void)setBool:(id)value block:(void (^)(BOOL))block -{ - // Entries in the dictionary can be NSNull. Especially, on React-Native, this can happen. - if (value != nil && ![value isEqual:[NSNull null]]) { - block([value boolValue]); - } -} - - (void)addInAppInclude:(NSString *)inAppInclude { _inAppIncludes = [self.inAppIncludes arrayByAddingObject:inAppInclude];