Skip to content

Commit 5e519e8

Browse files
committed
Fix import
1 parent 35e36a1 commit 5e519e8

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Sentry.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@
703703
925189AC2EDDA6A300557BD1 /* FlushLogsIntegration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 925189AA2EDDA6A300557BD1 /* FlushLogsIntegration.swift */; };
704704
9264E1EB2E2E385E00B077CF /* SentryLogMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9264E1EA2E2E385B00B077CF /* SentryLogMessage.swift */; };
705705
9264E1ED2E2E397C00B077CF /* SentryLogMessageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9264E1EC2E2E397400B077CF /* SentryLogMessageTests.swift */; };
706-
92672BB629C9A2A9006B021C /* SentryBreadcrumb+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 92672BB529C9A2A9006B021C /* SentryBreadcrumb+Private.h */; settings = {ATTRIBUTES = (Private, ); }; };
706+
92672BB629C9A2A9006B021C /* SentryBreadcrumb+HybridSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = 92672BB529C9A2A9006B021C /* SentryBreadcrumb+HybridSDK.h */; settings = {ATTRIBUTES = (Private, ); }; };
707707
927A5CC42DD7626B00B82404 /* SentryEnvelopeItemHeaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 927A5CC32DD7626400B82404 /* SentryEnvelopeItemHeaderTests.swift */; };
708708
927D21FB2ED5DE8A00916D31 /* FlushLogsIntegrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 927D21FA2ED5DE7F00916D31 /* FlushLogsIntegrationTests.swift */; };
709709
928207C42E251B8F009285A4 /* SentryScope+PrivateSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 928207C32E251B8F009285A4 /* SentryScope+PrivateSwift.h */; };
@@ -2063,7 +2063,7 @@
20632063
925189AA2EDDA6A300557BD1 /* FlushLogsIntegration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlushLogsIntegration.swift; sourceTree = "<group>"; };
20642064
9264E1EA2E2E385B00B077CF /* SentryLogMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryLogMessage.swift; sourceTree = "<group>"; };
20652065
9264E1EC2E2E397400B077CF /* SentryLogMessageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryLogMessageTests.swift; sourceTree = "<group>"; };
2066-
92672BB529C9A2A9006B021C /* SentryBreadcrumb+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SentryBreadcrumb+Private.h"; path = "include/SentryBreadcrumb+Private.h"; sourceTree = "<group>"; };
2066+
92672BB529C9A2A9006B021C /* SentryBreadcrumb+HybridSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SentryBreadcrumb+HybridSDK.h"; path = "include/SentryBreadcrumb+HybridSDK.h"; sourceTree = "<group>"; };
20672067
927A5CC32DD7626400B82404 /* SentryEnvelopeItemHeaderTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryEnvelopeItemHeaderTests.swift; sourceTree = "<group>"; };
20682068
927D21FA2ED5DE7F00916D31 /* FlushLogsIntegrationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlushLogsIntegrationTests.swift; sourceTree = "<group>"; };
20692069
928207C32E251B8F009285A4 /* SentryScope+PrivateSwift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "SentryScope+PrivateSwift.h"; path = "include/SentryScope+PrivateSwift.h"; sourceTree = "<group>"; };
@@ -2782,7 +2782,7 @@
27822782
63B818F81EC34639002FDF4C /* SentryDebugMeta.m */,
27832783
6360850B1ED2AFE100E8599E /* SentryBreadcrumb.h */,
27842784
6360850C1ED2AFE100E8599E /* SentryBreadcrumb.m */,
2785-
92672BB529C9A2A9006B021C /* SentryBreadcrumb+Private.h */,
2785+
92672BB529C9A2A9006B021C /* SentryBreadcrumb+HybridSDK.h */,
27862786
7B4E24FB251C97B400060D68 /* SentrySessionInternal.h */,
27872787
15E0A8F12411A45A00F044E3 /* SentrySessionInternal.m */,
27882788
7BFC169A2524995700FF6266 /* SentryMessage.h */,
@@ -5096,7 +5096,7 @@
50965096
buildActionMask = 2147483647;
50975097
files = (
50985098
92E5F3D62CDBB3BF00B7AD98 /* SentrySampling.h in Headers */,
5099-
92672BB629C9A2A9006B021C /* SentryBreadcrumb+Private.h in Headers */,
5099+
92672BB629C9A2A9006B021C /* SentryBreadcrumb+HybridSDK.h in Headers */,
51005100
03BCC38E27E2A377003232C7 /* SentryProfilingConditionals.h in Headers */,
51015101
848A451A2BBF8D33006AAAEC /* SentryContinuousProfiler.h in Headers */,
51025102
8E133FA625E72EB400ABD0BF /* SentrySamplingContext.h in Headers */,

Sources/Sentry/PrivateSentrySDKOnly.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import "PrivateSentrySDKOnly.h"
22
#import "SentryAppStartMeasurement.h"
3-
#import "SentryBreadcrumb+Private.h"
3+
#import "SentryBreadcrumb+HybridSDK.h"
44
#import "SentryClient.h"
55
#import "SentryHub+Private.h"
66
#import "SentryInstallation.h"

Sources/Sentry/SentryBreadcrumb.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import "SentryBreadcrumb.h"
2-
#import "SentryBreadcrumb+Private.h"
2+
#import "SentryBreadcrumb+HybridSDK.h"
33
#import "SentryDateUtils.h"
44
#import "SentryInternalDefines.h"
55
#import "SentryLevel.h"

Sources/Sentry/SentryCrashReportConverter.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import "SentryCrashReportConverter.h"
2-
#import "SentryBreadcrumb+Private.h"
2+
#import "SentryBreadcrumb+HybridSDK.h"
33
#import "SentryBreadcrumb.h"
44
#import "SentryCrashStackCursor.h"
55
#import "SentryDateUtils.h"

Tests/SentryTests/SentryInterfacesTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <XCTest/XCTest.h>
22

3-
#import "SentryBreadcrumb+Private.h"
3+
#import "SentryBreadcrumb+HybridSDK.h"
44
#import "SentryBreadcrumb.h"
55
#import "SentryDateUtils.h"
66
#import "SentryEvent.h"

Tests/SentryTests/SentryTests-Bridging-Header.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
#import "SentryAutoBreadcrumbTrackingIntegration+Test.h"
5353
#import "SentryAutoBreadcrumbTrackingIntegration.h"
5454
#import "SentryBooleanSerialization.h"
55-
#import "SentryBreadcrumb+Private.h"
55+
#import "SentryBreadcrumb+HybridSDK.h"
5656
#import "SentryBreadcrumbDelegate.h"
5757
#import "SentryBreadcrumbTracker.h"
5858
#import "SentryBuildAppStartSpans.h"

Tests/SentryTests/SentryTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "SentryMeta.h"
1111
#import "SentryOptionsInternal.h"
1212
#import "SentrySDK+Private.h"
13-
#import <SentryBreadcrumb+Private.h>
13+
#import <SentryBreadcrumb+HybridSDK.h>
1414
#import <XCTest/XCTest.h>
1515
@import Sentry;
1616

0 commit comments

Comments
 (0)