@@ -179,7 +179,7 @@ typedef NS_ENUM(NSInteger, GTRepositoryStateType) {
179179
180180// / The file URL for the repository's working directory.
181181// / Returns nil for a bare repository.
182- @property (nonatomic , readonly , strong , nullable ) NSURL *fileURL;
182+ @property (nonatomic , readonly , strong ) NSURL * _Nullable fileURL;
183183// / The file URL for the repository's .git directory.
184184@property (nonatomic , readonly , strong ) NSURL * _Nullable gitDirectoryURL;
185185
@@ -230,7 +230,7 @@ typedef NS_ENUM(NSInteger, GTRepositoryStateType) {
230230// / error - The error if one occurs.
231231// /
232232// / Returns the initialized repository, or nil if an error occurred.
233- - (nullable instancetype )initWithURL : (NSURL *)localFileURL flags : (NSInteger )flags ceilingDirs : (nullable NSArray <NSURL *> *)ceilingDirURLs error : (NSError **)error ;
233+ - (instancetype _Nullable )initWithURL : (NSURL *)localFileURL flags : (NSInteger )flags ceilingDirs : (NSArray <NSURL *> * _Nullable )ceilingDirURLs error : (NSError **)error ;
234234
235235- (instancetype )init NS_UNAVAILABLE;
236236
@@ -641,7 +641,7 @@ typedef NS_ENUM(NSInteger, GTRepositoryStateType) {
641641// / May be NULL.
642642// /
643643// / Returns the newly created note or nil on error.
644- - (nullable GTNote *)createNote : (NSString *)note target : (GTObject *)theTarget referenceName : (nullable NSString *)referenceName author : (GTSignature *)author committer : (GTSignature *)committer overwriteIfExists : (BOOL )overwrite error : (NSError **)error ;
644+ - (GTNote * _Nullable )createNote : (NSString *)note target : (GTObject *)theTarget referenceName : (NSString * _Nullable )referenceName author : (GTSignature *)author committer : (GTSignature *)committer overwriteIfExists : (BOOL )overwrite error : (NSError **)error ;
645645
646646// / Removes a note attached to object in this repo
647647// /
@@ -655,7 +655,7 @@ typedef NS_ENUM(NSInteger, GTRepositoryStateType) {
655655// / May be NULL.
656656// /
657657// / Returns the YES on success and NO on error.
658- - (BOOL )removeNoteFromObject : (GTObject *)parentObject referenceName : (nullable NSString *)referenceName author : (GTSignature *)author committer : (GTSignature *)committer error : (NSError **)error ;
658+ - (BOOL )removeNoteFromObject : (GTObject *)parentObject referenceName : (NSString * _Nullable )referenceName author : (GTSignature *)author committer : (GTSignature *)committer error : (NSError **)error ;
659659
660660// / Enumerates through all stored notes in this repo
661661// /
@@ -667,7 +667,7 @@ typedef NS_ENUM(NSInteger, GTRepositoryStateType) {
667667// / If the block sets `stop` to YES, the iterator is finished.
668668// /
669669// / Returns YES on overall success or NO on error of any kind.
670- - (BOOL )enumerateNotesWithReferenceName : (nullable NSString *)referenceName error : (NSError **)error usingBlock : (void (^)(GTNote * __nullable note, GTObject * __nullable object, NSError * __nullable error, BOOL *stop))block ;
670+ - (BOOL )enumerateNotesWithReferenceName : (NSString * _Nullable )referenceName error : (NSError **)error usingBlock : (void (^)(GTNote * _Nullable note, GTObject * _Nullable object, NSError * _Nullable error, BOOL *stop))block ;
671671
672672@end
673673
0 commit comments