Skip to content

Commit 98cbc1e

Browse files
author
Brandon Sneed
committed
Remove @import statements and replace w/ headers
1 parent ad8ea0a commit 98cbc1e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Segment-Firebase/Classes/SEGFirebaseIntegration.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#import "SEGFirebaseIntegration.h"
22

3-
@import FirebaseCore;
4-
@import FirebaseAnalytics;
3+
#import <FirebaseCore/FirebaseCore.h>
4+
#import <FirebaseAnalytics/FirebaseAnalytics.h>
55

66
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
77
#import <Analytics/SEGAnalyticsUtils.h>
88
#else
9-
@import Segment;
9+
#import <Segment/Segment.h>
1010
#endif
1111

1212

Segment-Firebase/Classes/SEGFirebaseIntegrationFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
44
#import <Analytics/SEGIntegrationFactory.h>
55
#else
6-
@import Segment;
6+
#import <Segment/Segment.h>
77
#endif
88

99

0 commit comments

Comments
 (0)