Skip to content

Commit

Permalink
obj quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
velicuvlad committed Sep 12, 2023
1 parent 6594360 commit b42f1d6
Show file tree
Hide file tree
Showing 33 changed files with 48 additions and 48 deletions.
2 changes: 1 addition & 1 deletion Objective-C/CBLArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import <CBLArrayFragment.h>
#import "CBLArrayFragment.h"
@class CBLBlob;
@class CBLDictionary;
@class CBLArray;
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLBasicAuthenticator.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
6 changes: 3 additions & 3 deletions Objective-C/CBLCollection.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
// limitations under the License.
//

#import <CBLCollectionChangeObservable.h>
#import <CBLIndexable.h>
#import <CBLCollectionTypes.h>
#import "CBLCollectionChangeObservable.h"
#import "CBLIndexable.h"
#import "CBLCollectionTypes.h"

@class CBLDocument;
@class CBLDocumentChange;
Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLCollectionChangeObservable.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// limitations under the License.
//

#import <CBLCollectionChange.h>
#import <CBLListenerToken.h>
#import "CBLCollectionChange.h"
#import "CBLListenerToken.h"

NS_ASSUME_NONNULL_BEGIN
/**
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLCollectionConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

@protocol CBLConflictResolver;

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLConflictResolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// limitations under the License.
//

#import <CBLConflict.h>
#import "CBLConflict.h"
@class CBLDocument;

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLConsoleLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
6 changes: 3 additions & 3 deletions Objective-C/CBLDatabase.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
//

#import <Foundation/Foundation.h>
#import <CBLLogger.h>
#import <CBLQueryFactory.h>
#import <CBLCollectionTypes.h>
#import "CBLLogger.h"
#import "CBLQueryFactory.h"
#import "CBLCollectionTypes.h"
@class CBLBlob;
@class CBLCollection;
@class CBLDatabaseChange;
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLDatabase.mm
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ - (nullable CBLCollection*) collectionWithName: (NSString*)name
C4Error c4err = {};
C4Collection* c4col = c4db_getCollection(_c4db, spec, &c4err);
if (!c4col) {
if (!(c4err.code == kC4ErrorNotFound && c4err.domain == LiteCoreDomain)) {
if (c4err.code != 0) {
CBLWarn(Database, @"%@ Failed to get collection: %@.%@ (%d/%d)",
self, scopeName, name, c4err.domain, c4err.code);
convertError(c4err, error);
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLDefaults.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// THIS IS AN AUTOGENERATED FILE, MANUAL CHANGES SHOULD BE EXPECTED TO
// BE OVERWRITTEN

#import <CBLReplicatorTypes.h>
#import "CBLReplicatorTypes.h"

#pragma mark - CBLLogFileConfiguration

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLDictionary.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import <CBLDictionaryFragment.h>
#import "CBLDictionaryFragment.h"
@class CBLBlob;
@class CBLArray;
@class CBLDictionary;
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLDocument.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import <CBLDictionary.h>
#import "CBLDictionary.h"
@class CBLMutableDocument;
@class CBLCollection;

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLDocumentFragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import <CBLDictionaryFragment.h>
#import "CBLDictionaryFragment.h"
@class CBLDocument;

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLFileLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import <CBLLogger.h>
#import "CBLLogger.h"
@class CBLLogFileConfiguration;

NS_ASSUME_NONNULL_BEGIN
Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLFragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
//

#import <Foundation/Foundation.h>
#import <CBLArrayFragment.h>
#import <CBLDictionaryFragment.h>
#import "CBLArrayFragment.h"
#import "CBLDictionaryFragment.h"
@class CBLBlob;
@class CBLArray;
@class CBLDictionary;
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLFullTextIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLFullTextIndexConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLIndexable.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// limitations under the License.
//

#import <CBLIndexConfiguration.h>
#import <CBLIndex.h>
#import "CBLIndexConfiguration.h"
#import "CBLIndex.h"

NS_ASSUME_NONNULL_BEGIN
/** The Indexable interface defines a set of functions for managing the query indexes. */
Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLMutableArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
//

#import <Foundation/Foundation.h>
#import <CBLArray.h>
#import <CBLMutableArrayFragment.h>
#import "CBLArray.h"
#import "CBLMutableArrayFragment.h"
@class CBLMutableDictionary;
@class CBLMutableArray;

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLMutableArrayFragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// limitations under the License.
//

#import <CBLArrayFragment.h>
#import "CBLArrayFragment.h"
@class CBLMutableFragment;

NS_ASSUME_NONNULL_BEGIN
Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLMutableDictionary.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
//

#import <Foundation/Foundation.h>
#import <CBLDictionary.h>
#import <CBLMutableDictionaryFragment.h>
#import "CBLDictionary.h"
#import "CBLMutableDictionaryFragment.h"
@class CBLMutableArray;
@class CBLMutableDictionary;

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLMutableDictionaryFragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//


#import <CBLDictionaryFragment.h>
#import "CBLDictionaryFragment.h"
@class CBLMutableFragment;

NS_ASSUME_NONNULL_BEGIN
Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLMutableDocument.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
//

#import <Foundation/Foundation.h>
#import <CBLDocument.h>
#import <CBLMutableDictionary.h>
#import "CBLDocument.h"
#import "CBLMutableDictionary.h"
@class CBLDatabase;

NS_ASSUME_NONNULL_BEGIN
Expand Down
10 changes: 5 additions & 5 deletions Objective-C/CBLMutableFragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
//

#import <Foundation/Foundation.h>
#import <CBLMutableArray.h>
#import <CBLMutableArrayFragment.h>
#import <CBLMutableDictionary.h>
#import <CBLMutableDictionaryFragment.h>
#import <CBLFragment.h>
#import "CBLMutableArray.h"
#import "CBLMutableArrayFragment.h"
#import "CBLMutableDictionary.h"
#import "CBLMutableDictionaryFragment.h"
#import "CBLFragment.h"

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLQueryVariableExpression.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLReplicator.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

@class CBLCollection;
@class CBLDatabase;
Expand Down
4 changes: 2 additions & 2 deletions Objective-C/CBLReplicatorConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

#import <Foundation/Foundation.h>
#import <Security/SecCertificate.h>
#import <CBLDocumentFlags.h>
#import <CBLReplicatorTypes.h>
#import "CBLDocumentFlags.h"
#import "CBLReplicatorTypes.h"

@class CBLAuthenticator;
@class CBLCollection;
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLReplicatorTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#pragma once
#import <CBLDocumentFlags.h>
#import "CBLDocumentFlags.h"

@class CBLDocument;

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLSessionAuthenticator.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLURLEndpoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLValueIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import <CBLIndex.h>
#import "CBLIndex.h"
@class CBLQueryExpression;

NS_ASSUME_NONNULL_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/CBLValueIndexConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

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

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Objective-C/Internal/CBLQuery+JSON.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#import <CBLQuery.h>
#import "CBLQuery.h"

NS_ASSUME_NONNULL_BEGIN

Expand Down

0 comments on commit b42f1d6

Please sign in to comment.