Skip to content

Commit

Permalink
Disables Quoted Import Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jleandroperez committed Sep 17, 2020
1 parent 4188f4a commit e10b721
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Simperium/SPBucket.h
Expand Up @@ -7,8 +7,8 @@
//

#import <Foundation/Foundation.h>
#import <Simperium/SPStorageProvider.h>
#import <Simperium/SPNetworkInterface.h>
#import "SPStorageProvider.h"
#import "SPNetworkInterface.h"

@class SPDiffer;
@class SPSchema;
Expand Down
2 changes: 1 addition & 1 deletion Simperium/SPManagedObject.h
Expand Up @@ -9,7 +9,7 @@

#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import <Simperium/SPDiffable.h>
#import "SPDiffable.h"

@class SPMember;
@class SPGhost;
Expand Down
2 changes: 1 addition & 1 deletion Simperium/SPNetworkInterface.h
Expand Up @@ -7,7 +7,7 @@
//

#import <Foundation/Foundation.h>
#import <Simperium/SPDiffable.h>
#import "SPDiffable.h"


@class SPBucket;
Expand Down
2 changes: 1 addition & 1 deletion Simperium/SPStorageProvider.h
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2011 Simperium. All rights reserved.
//

#import <Simperium/SPDiffable.h>
#import "SPDiffable.h"



Expand Down
10 changes: 5 additions & 5 deletions Simperium/Simperium.h
Expand Up @@ -8,11 +8,11 @@

#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import <Simperium/SPBucket.h>
#import <Simperium/SPManagedObject.h>
#import <Simperium/SPAuthenticator.h>
#import <Simperium/SPAuthenticationInterface.h>
#import <Simperium/SPUser.h>
#import "SPBucket.h"
#import "SPManagedObject.h"
#import "SPAuthenticator.h"
#import "SPAuthenticationInterface.h"
#import "SPUser.h"

#if TARGET_OS_IPHONE
#import <UIKit/UIApplication.h>
Expand Down

0 comments on commit e10b721

Please sign in to comment.