Fix compilation warnings

This commit is contained in:
Pieter de Bie
2008-06-21 14:06:04 +02:00
parent 17df4e808a
commit 2e3a79af4a
2 changed files with 1 additions and 5 deletions
-4
View File
@@ -14,15 +14,11 @@
PBGitRevList* revisionList;
}
+ (void) setGitPath;
+ (PBGitRepository*) repositoryWithPath:(NSString*) path;
- (PBGitRepository*) initWithPath:(NSString*) path;
- (NSFileHandle*) handleForCommand:(NSString*) cmd;
- (NSFileHandle*) handleForArguments:(NSArray*) args;
- (void) initializeCommits;
- (void) addCommit: (id)obj;
@property (copy) NSString* path;
@property (readonly) PBGitRevList* revisionList;
+1 -1
View File
@@ -14,7 +14,7 @@
@implementation PBGitRepository
@synthesize path;
@synthesize path, revisionList;
static NSString* gitPath;
+ (void) initialize