From 573b10fe00c2bda70d1fd839dcadfa6096226ce2 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Fri, 18 Nov 2022 12:18:56 +0100 Subject: [PATCH] Remove unused method --- Sources/Sentry/SentryOptions.m | 8 -------- 1 file changed, 8 deletions(-) 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];