Skip to content

Commit 113d7dd

Browse files
committed
Fix XCode 6.3 compilation
1 parent 83fb875 commit 113d7dd

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

ObjectiveGit/GTIndexEntry.h

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ NS_ASSUME_NONNULL_BEGIN
5252
/// error - will be filled if an error occurs
5353
///
5454
/// Returns the initialized object.
55-
- (instancetype)initWithGitIndexEntry:(const git_index_entry *)entry index:(GTIndex *)index error:(NSError **)error NS_DESIGNATED_INITIALIZER;
55+
- (instancetype)initWithGitIndexEntry:(const git_index_entry *)entry index:(nullable GTIndex *)index error:(NSError **)error NS_DESIGNATED_INITIALIZER;
5656
- (instancetype)initWithGitIndexEntry:(const git_index_entry *)entry;
5757

5858
/// The underlying `git_index_entry` object.
@@ -80,12 +80,6 @@ NS_ASSUME_NONNULL_BEGIN
8080
/// Returns this entry as a GTObject or nil if an error occurred.
8181
- (GTObject *)GTObject:(NSError **)error;
8282

83-
/// Initializes the receiver with the given libgit2 index entry. Designated initializer.
84-
///
85-
/// Returns the initialized object.
86-
- (nullable instancetype)initWithGitIndexEntry:(const git_index_entry *)entry NS_DESIGNATED_INITIALIZER;
87-
88-
8983
@end
9084

9185
@interface GTObject (GTIndexEntry)

0 commit comments

Comments
 (0)