From 10149fc5f3654df0a1e94bcea5d0b5ed2ea01c63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berg?= Date: Tue, 30 Mar 2010 15:53:20 +0200 Subject: [PATCH] Add in left-out (id) return labels to some methods in PBGitCommit. --- PBGitCommit.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PBGitCommit.h b/PBGitCommit.h index 3e361e9..02ceb03 100644 --- a/PBGitCommit.h +++ b/PBGitCommit.h @@ -34,11 +34,11 @@ extern NSString * const kGitXCommitType; PBGitRepository* repository; } -+ commitWithRepository:(PBGitRepository*)repo andSha:(git_oid)newSha; -- initWithRepository:(PBGitRepository *)repo andSha:(git_oid)sha; ++ (id) commitWithRepository:(PBGitRepository*)repo andSha:(git_oid)newSha; +- (id) initWithRepository:(PBGitRepository *)repo andSha:(git_oid)sha; -- (void)addRef:(PBGitRef *)ref; -- (void)removeRef:(id)ref; +- (void) addRef:(PBGitRef *)ref; +- (void) removeRef:(id)ref; - (BOOL) hasRef:(PBGitRef *)ref; - (NSString *)realSha;