Skip to content

Commit

Permalink
ref: Make inAppExcludes internal (#4371)
Browse files Browse the repository at this point in the history
Make SentryInAppLogic.inAppExcludes internal as it's not used by any
other class.
  • Loading branch information
philipphofmann authored Sep 27, 2024
1 parent 3eb2070 commit 4c0441d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Sources/Sentry/SentryInAppLogic.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

NS_ASSUME_NONNULL_BEGIN

@interface SentryInAppLogic ()

@property (nonnull, readonly) NSArray<NSString *> *inAppExcludes;

@end

@implementation SentryInAppLogic

- (instancetype)initWithInAppIncludes:(NSArray<NSString *> *)inAppIncludes
Expand Down
2 changes: 0 additions & 2 deletions Sources/Sentry/include/SentryInAppLogic.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ SENTRY_NO_INIT

@property (nonnull, readonly) NSArray<NSString *> *inAppIncludes;

@property (nonnull, readonly) NSArray<NSString *> *inAppExcludes;

/**
* Initializes @c SentryInAppLogic with @c inAppIncludes and @c inAppExcludes.
*
Expand Down

0 comments on commit 4c0441d

Please sign in to comment.