From 589b0b57eaeac577bfbde60a817b1503c510a8a9 Mon Sep 17 00:00:00 2001 From: Dhiogo Brustolin Date: Tue, 24 Dec 2024 09:29:48 +0100 Subject: [PATCH] Apply suggestions from code review --- Sources/Sentry/SentrySessionReplayIntegration.m | 1 - Sources/Sentry/include/SentryPrivate.h | 1 - .../Sentry/include/SentrySessionReplayIntegration+Private.h | 6 +----- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Sources/Sentry/SentrySessionReplayIntegration.m b/Sources/Sentry/SentrySessionReplayIntegration.m index 9d2be45be95..b1afdbc6b2b 100644 --- a/Sources/Sentry/SentrySessionReplayIntegration.m +++ b/Sources/Sentry/SentrySessionReplayIntegration.m @@ -18,7 +18,6 @@ # import "SentryReachability.h" # import "SentrySDK+Private.h" # import "SentryScope+Private.h" -# import "SentrySdkInfo.h" # import "SentrySerialization.h" # import "SentrySessionReplaySyncC.h" # import "SentrySwift.h" diff --git a/Sources/Sentry/include/SentryPrivate.h b/Sources/Sentry/include/SentryPrivate.h index c1415fe1481..27c7ad8d640 100644 --- a/Sources/Sentry/include/SentryPrivate.h +++ b/Sources/Sentry/include/SentryPrivate.h @@ -13,7 +13,6 @@ #import "SentryDisplayLinkWrapper.h" #import "SentryLevelHelper.h" #import "SentryLogC.h" -#import "SentryMeta.h" #import "SentryRandom.h" #import "SentrySdkInfo.h" #import "SentrySession.h" diff --git a/Sources/Sentry/include/SentrySessionReplayIntegration+Private.h b/Sources/Sentry/include/SentrySessionReplayIntegration+Private.h index af8d6d5da19..b9d45561020 100644 --- a/Sources/Sentry/include/SentrySessionReplayIntegration+Private.h +++ b/Sources/Sentry/include/SentrySessionReplayIntegration+Private.h @@ -4,20 +4,16 @@ #if SENTRY_TARGET_REPLAY_SUPPORTED -NS_ASSUME_NONNULL_BEGIN - @class SentrySessionReplay; @class SentryViewPhotographer; @interface SentrySessionReplayIntegration () -@property (nonatomic, strong, nullable) SentrySessionReplay *sessionReplay; +@property (nonatomic, strong) SentrySessionReplay *sessionReplay; @property (nonatomic, strong) SentryViewPhotographer *viewPhotographer; @end -NS_ASSUME_NONNULL_END - #endif