@@ -16,7 +16,7 @@ NS_ASSUME_NONNULL_BEGIN
16
16
@interface GTOID : NSObject <NSCopying >
17
17
18
18
// / The SHA pointed to by the OID.
19
- @property (nonatomic , readonly , copy , nullable ) NSString *SHA;
19
+ @property (nonatomic , readonly , copy ) NSString *SHA;
20
20
21
21
// / Is the OID all zero? This usually indicates that the object has not been
22
22
// / inserted into the ODB yet.
@@ -27,7 +27,7 @@ NS_ASSUME_NONNULL_BEGIN
27
27
// / git_oid - The underlying git_oid. Cannot be NULL.
28
28
// /
29
29
// / Returns the initialized receiver.
30
- - (nullable instancetype )initWithGitOid : (const git_oid *)git_oid NS_DESIGNATED_INITIALIZER;
30
+ - (instancetype )initWithGitOid : (const git_oid *)git_oid NS_DESIGNATED_INITIALIZER;
31
31
32
32
// / Initializes the receiver by converting the given SHA to an OID.
33
33
// /
@@ -62,7 +62,7 @@ NS_ASSUME_NONNULL_BEGIN
62
62
- (nullable instancetype )initWithSHACString : (const char *)string error : (NSError **)error NS_DESIGNATED_INITIALIZER;
63
63
64
64
// / Creates a new instance with the given git_oid using initWithGitOid:
65
- + (nullable instancetype )oidWithGitOid : (const git_oid *)git_oid ;
65
+ + (instancetype )oidWithGitOid : (const git_oid *)git_oid ;
66
66
67
67
// / Creates a new instance from the given SHA string using initWithSHAString:
68
68
+ (nullable instancetype )oidWithSHA : (NSString *)SHA ;
0 commit comments