File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 46
46
47
47
- (void )setHistorySearch : (NSString *)searchString mode : (NSInteger )mode ;
48
48
49
- -(NSNumber *)countCommintsOf : (NSString *)range ;
49
+ -(NSNumber *)countCommitsOf : (NSString *)range ;
50
50
-(bool )remoteNeedFetch : (NSString *)remote ;
51
51
52
52
@property (strong , readonly ) NSMutableArray *items;
Original file line number Diff line number Diff line change @@ -175,8 +175,8 @@ -(void)updateMetaDataforBranches:(PBSourceViewItem *)theBranches
175
175
for (PBGitSVBranchItem* branch in [theBranches children ]){
176
176
if ([branch isKindOfClass: [PBGitSVBranchItem class ]]){
177
177
dispatch_async (PBGetWorkQueue (),^{
178
- id ahead = [self countCommintsOf : [NSString stringWithFormat: @" origin/%@ ..%@ " ,branch.revSpecifier,branch.revSpecifier]];
179
- id behind = [self countCommintsOf : [NSString stringWithFormat: @" %@ ..origin/%@ " ,branch.revSpecifier,branch.revSpecifier]];
178
+ id ahead = [self countCommitsOf : [NSString stringWithFormat: @" origin/%@ ..%@ " ,branch.revSpecifier,branch.revSpecifier]];
179
+ id behind = [self countCommitsOf : [NSString stringWithFormat: @" %@ ..origin/%@ " ,branch.revSpecifier,branch.revSpecifier]];
180
180
dispatch_async (dispatch_get_main_queue (),^{
181
181
[branch setAhead: ahead];
182
182
[branch setBehind: behind];
@@ -205,7 +205,7 @@ -(void)evaluateRemoteBadge:(PBGitSVRemoteItem *)remote
205
205
}
206
206
}
207
207
208
- -(NSNumber *)countCommintsOf : (NSString *)range
208
+ -(NSNumber *)countCommitsOf : (NSString *)range
209
209
{
210
210
NSArray *args = [NSArray arrayWithObjects: @" rev-list" , range, nil ];
211
211
int ret;
You can’t perform that action at this time.
0 commit comments