diff --git a/Bugsnag.xcodeproj/project.pbxproj b/Bugsnag.xcodeproj/project.pbxproj index 4939f4dc0..c1ede6ab0 100644 --- a/Bugsnag.xcodeproj/project.pbxproj +++ b/Bugsnag.xcodeproj/project.pbxproj @@ -1577,7 +1577,7 @@ 093EB6652AFE4580006EB7E3 /* BSGTestCase.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = BSGTestCase.mm; sourceTree = ""; }; 09E312ED2BF230660081F219 /* BugsnagCocoaPerformanceFromBugsnagCocoa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BugsnagCocoaPerformanceFromBugsnagCocoa.h; sourceTree = ""; }; 09E312EE2BF230660081F219 /* BugsnagCocoaPerformanceFromBugsnagCocoa.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BugsnagCocoaPerformanceFromBugsnagCocoa.m; sourceTree = ""; }; - 09E312F72BF248DD0081F219 /* BugsnagCorrelation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BugsnagCorrelation.h; path = ../include/Bugsnag/BugsnagCorrelation.h; sourceTree = ""; }; + 09E312F72BF248DD0081F219 /* BugsnagCorrelation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BugsnagCorrelation.h; sourceTree = ""; }; 09E312FD2BF34D6D0081F219 /* BugsnagCorrelation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BugsnagCorrelation.m; sourceTree = ""; }; 09E3132E2BF3867C0081F219 /* BugsnagPerformanceBridgeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BugsnagPerformanceBridgeTests.m; sourceTree = ""; }; 3A700A8024A63A8E0068CD1B /* BugsnagThread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BugsnagThread.h; sourceTree = ""; }; diff --git a/Bugsnag/include/Bugsnag/BugsnagCorrelation.h b/Bugsnag/include/Bugsnag/BugsnagCorrelation.h deleted file mode 100644 index ac5902987..000000000 --- a/Bugsnag/include/Bugsnag/BugsnagCorrelation.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// BugsnagCorrelation.h -// Bugsnag -// -// Created by Karl Stenerud on 13.05.24. -// Copyright © 2024 Bugsnag Inc. All rights reserved. -// - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -BUGSNAG_EXTERN -@interface BugsnagCorrelation: NSObject - -@property (readonly, nonatomic, strong, nullable) NSString *traceId; - -@property (readonly, nonatomic, strong, nullable) NSString *spanId; - -- (instancetype) initWithTraceId:(NSString * _Nullable) traceId spanId:(NSString * _Nullable)spanId; - -- (instancetype) initWithJsonDictionary:(NSDictionary * _Nullable) dict; - -- (NSDictionary *) toJsonDictionary; - -@end - -NS_ASSUME_NONNULL_END diff --git a/CHANGELOG.md b/CHANGELOG.md index 725a31f49..457ed1161 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +## TBD + +### Bug Fixes + +* Removed duplicate BugsnagCorrelation.h header file that was causing warnings when building an app. + [1662](https://github.com/bugsnag/bugsnag-cocoa/pull/1662) + ## 6.30.0 (2024-07-04) ### Enhancements