From 6ba2f5d14b285808ecd5df463f5981974800bc59 Mon Sep 17 00:00:00 2001 From: David Catmull Date: Mon, 20 Mar 2017 09:29:54 -0600 Subject: [PATCH] GTObject method should be nullable --- ObjectiveGit/GTIndexEntry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObjectiveGit/GTIndexEntry.h b/ObjectiveGit/GTIndexEntry.h index 8b5ff9f23..417e789cf 100644 --- a/ObjectiveGit/GTIndexEntry.h +++ b/ObjectiveGit/GTIndexEntry.h @@ -80,7 +80,7 @@ NS_ASSUME_NONNULL_BEGIN /// error - will be filled if an error occurs /// /// Returns this entry as a GTObject or nil if an error occurred. -- (GTObject *)GTObject:(NSError **)error; +- (nullable GTObject *)GTObject:(NSError **)error; @end