Skip to content

Commit

Permalink
Merge pull request #902 from ably/carthage-issue
Browse files Browse the repository at this point in the history
Carthage: fix public header imports
  • Loading branch information
ricardopereira authored Oct 9, 2019
2 parents 8a922ed + e967a05 commit a99b5e7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
1 change: 0 additions & 1 deletion Source/ARTEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
//

#import <Foundation/Foundation.h>
#import "CompatibilityMacros.h"
#import "ARTTypes.h"

@class ARTMessage;
Expand Down
3 changes: 1 addition & 2 deletions Source/ARTJsonLikeEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#ifndef ARTJsonLikeEncoder_h
#define ARTJsonLikeEncoder_h

#import "CompatibilityMacros.h"
#import <Ably/ARTRest+Private.h>
#import <Ably/ARTEncoder.h>
#import <Ably/ARTTokenDetails.h>
Expand Down Expand Up @@ -78,6 +77,6 @@ NS_ASSUME_NONNULL_BEGIN

@end

ART_ASSUME_NONNULL_END
NS_ASSUME_NONNULL_END

#endif /* ARTJsonLikeEncoder_h */
2 changes: 1 addition & 1 deletion Source/ARTPushChannel+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef ARTPushChannel_Private_h
#define ARTPushChannel_Private_h

#import "ARTPushChannel.h"
#import <Ably/ARTPushChannel.h>
#import "ARTQueuedDealloc.h"

@class ARTRestInternal;
Expand Down
4 changes: 2 additions & 2 deletions Source/ARTPushChannelSubscriptions+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef ARTPushChannelSubscriptions_Private_h
#define ARTPushChannelSubscriptions_Private_h

#include "ARTPushChannelSubscriptions.h"
#include "ARTQueuedDealloc.h"
#import <Ably/ARTPushChannelSubscriptions.h>
#import "ARTQueuedDealloc.h"

@class ARTRestInternal;

Expand Down
2 changes: 1 addition & 1 deletion Source/ARTPushDeviceRegistrations+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef ARTPushDeviceRegistrations_Private_h
#define ARTPushDeviceRegistrations_Private_h

#include "ARTPushDeviceRegistrations.h"
#import <Ably/ARTPushDeviceRegistrations.h>
#import "ARTQueuedDealloc.h"

@class ARTRestInternal;
Expand Down
1 change: 0 additions & 1 deletion Source/ARTTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
//

#import <Foundation/Foundation.h>
#import "CompatibilityMacros.h"

#import <Ably/ARTStatus.h>
#import <Ably/ARTEventEmitter.h>
Expand Down

0 comments on commit a99b5e7

Please sign in to comment.