From 4c0441d2aba7da842cf2419a101395e74046f96b Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Fri, 27 Sep 2024 08:23:34 +0200 Subject: [PATCH] ref: Make inAppExcludes internal (#4371) Make SentryInAppLogic.inAppExcludes internal as it's not used by any other class. --- Sources/Sentry/SentryInAppLogic.m | 6 ++++++ Sources/Sentry/include/SentryInAppLogic.h | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Sources/Sentry/SentryInAppLogic.m b/Sources/Sentry/SentryInAppLogic.m index 45d37ea8637..53a965fe6b7 100644 --- a/Sources/Sentry/SentryInAppLogic.m +++ b/Sources/Sentry/SentryInAppLogic.m @@ -5,6 +5,12 @@ NS_ASSUME_NONNULL_BEGIN +@interface SentryInAppLogic () + +@property (nonnull, readonly) NSArray *inAppExcludes; + +@end + @implementation SentryInAppLogic - (instancetype)initWithInAppIncludes:(NSArray *)inAppIncludes diff --git a/Sources/Sentry/include/SentryInAppLogic.h b/Sources/Sentry/include/SentryInAppLogic.h index b2031bb6df8..2a41fda4dbc 100644 --- a/Sources/Sentry/include/SentryInAppLogic.h +++ b/Sources/Sentry/include/SentryInAppLogic.h @@ -32,8 +32,6 @@ SENTRY_NO_INIT @property (nonnull, readonly) NSArray *inAppIncludes; -@property (nonnull, readonly) NSArray *inAppExcludes; - /** * Initializes @c SentryInAppLogic with @c inAppIncludes and @c inAppExcludes. *