diff --git a/PBGitRepository.h b/PBGitRepository.h index 35ce059..3ae5e73 100644 --- a/PBGitRepository.h +++ b/PBGitRepository.h @@ -50,8 +50,6 @@ static NSString * PBStringFromBranchFilterType(PBGitXBranchFilterType type) { NSMutableDictionary *refs; PBGitRevSpecifier *_headRef; // Caching - - BOOL launchedFromCLI; } - (void) cloneRepositoryToPath:(NSString *)path bare:(BOOL)isBare; @@ -137,6 +135,5 @@ static NSString * PBStringFromBranchFilterType(PBGitXBranchFilterType type) { @property (assign) PBGitRevSpecifier *currentBranch; @property (assign) NSInteger currentBranchFilter; @property (retain) NSMutableDictionary* refs; -@property (assign) BOOL launchedFromCLI; @end diff --git a/PBGitRepository.m b/PBGitRepository.m index b4cc48d..433fdf8 100644 --- a/PBGitRepository.m +++ b/PBGitRepository.m @@ -10,7 +10,6 @@ #import "PBGitCommit.h" #import "PBGitWindowController.h" #import "PBGitBinary.h" - #import "NSFileHandleExt.h" #import "PBEasyPipe.h" #import "PBGitRef.h" @@ -23,9 +22,13 @@ static NSString * repositoryBasePath = nil; @implementation PBGitRepository -@synthesize revisionList, branches, currentBranch, refs, hasChanged, config; +@synthesize revisionList; +@synthesize branches; +@synthesize currentBranch; +@synthesize refs; +@synthesize hasChanged; +@synthesize config; @synthesize currentBranchFilter; -@synthesize launchedFromCLI; - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError **)outError {