Skip to content

Commit

Permalink
Merge pull request #540 from onecrayon/master
Browse files Browse the repository at this point in the history
Added missing nullable keyword to [GTIndex entryWithPath:path] convenience method
  • Loading branch information
joshaber committed Jan 27, 2016
2 parents 37b35c2 + 1a86570 commit 7a38783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ObjectiveGit/GTIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ NS_ASSUME_NONNULL_BEGIN
/// Returns a new GTIndexEntry, or nil if an error occurred.
- (nullable GTIndexEntry *)entryAtIndex:(NSUInteger)index;

/// Get the entry with the given path.
- (GTIndexEntry *)entryWithPath:(NSString *)path;
/// Get the entry with the given path, or nil if an error occurred.
- (nullable GTIndexEntry *)entryWithPath:(NSString *)path;

/// Get the entry with the given name.
///
Expand Down

0 comments on commit 7a38783

Please sign in to comment.