Skip to content

Commit

Permalink
fix module headers
Browse files Browse the repository at this point in the history
Conflicts:
	Realm/Tests/RealmSwift/TestCase.swift
  • Loading branch information
alazier committed Jan 30, 2015
1 parent b8e2074 commit d0a5c4f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Realm/RLMArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
////////////////////////////////////////////////////////////////////////////

#import <Foundation/Foundation.h>
#import "RLMCollection.h"
#import <Realm/RLMCollection.h>

@class RLMObject, RLMRealm, RLMResults;

Expand Down
3 changes: 1 addition & 2 deletions Realm/RLMObjectSchema.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
//
////////////////////////////////////////////////////////////////////////////

#import <Foundation/Foundation.h>
#import "RLMProperty.h"
#import <Realm/RLMProperty.h>

/**
This class represents Realm model object schemas persisted to Realm in an RLMSchema.
Expand Down
4 changes: 2 additions & 2 deletions Realm/RLMObject_Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//
////////////////////////////////////////////////////////////////////////////

#import "RLMObject.h"
#import "RLMObjectSchema.h"
#import <Realm/RLMObject.h>
#import <Realm/RLMObjectSchema.h>

// RLMObject accessor and read/write realm
@interface RLMObjectBase () {
Expand Down
2 changes: 1 addition & 1 deletion Realm/RLMProperty.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
////////////////////////////////////////////////////////////////////////////

#import <Foundation/Foundation.h>
#import "RLMConstants.h"
#import <Realm/RLMConstants.h>

/**
This class models properties persisted to Realm in an RLMObjectSchema.
Expand Down
6 changes: 3 additions & 3 deletions Realm/RLMRealm_Dynamic.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
//
////////////////////////////////////////////////////////////////////////////

#import "RLMRealm.h"
#import "RLMResults.h"
#import "RLMObjectSchema.h"
#import <Realm/RLMRealm.h>
#import <Realm/RLMResults.h>
#import <Realm/RLMObjectSchema.h>

@interface RLMRealm (Dynamic)

Expand Down
2 changes: 1 addition & 1 deletion Realm/RLMRealm_Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//
////////////////////////////////////////////////////////////////////////////

#import "RLMRealm_Dynamic.h"
#import <Realm/RLMRealm_Dynamic.h>

// RLMRealm private members
@interface RLMRealm () {
Expand Down
2 changes: 1 addition & 1 deletion Realm/RLMSchema.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
////////////////////////////////////////////////////////////////////////////

#import <Foundation/Foundation.h>
#import "RLMObjectSchema.h"
#import <Realm/RLMObjectSchema.h>

/**
This class represents the collection of model object schemas persisted to Realm.
Expand Down
2 changes: 1 addition & 1 deletion Realm/RLMSchema_Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//
////////////////////////////////////////////////////////////////////////////

#import "RLMSchema.h"
#import <Realm/RLMSchema.h>

//
// Realm table namespace costants/methods
Expand Down

0 comments on commit d0a5c4f

Please sign in to comment.