Skip to content

Commit 9167113

Browse files
committed
IndexController: de-privatize the index-stopping stuff
We shouldn't need to do this, but we still need to, because our index operations are split between two different controllers, which is a bit odd.
1 parent 4544816 commit 9167113

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

PBGitIndexController.h

+3
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,8 @@
3636
- (NSString *) stagedChangesForFile:(PBChangedFile *)file;
3737
- (NSString *) unstagedChangesForFile:(PBChangedFile *)file;
3838

39+
- (void)stopTrackingIndex;
40+
- (void)resumeTrackingIndex;
41+
3942
- (NSMenu *) menuForTable:(NSTableView *)table;
4043
@end

PBGitIndexController.m

-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212

1313
#define FileChangesTableViewType @"GitFileChangedType"
1414

15-
@interface PBGitIndexController (PrivateMethods)
16-
- (void)stopTrackingIndex;
17-
- (void)resumeTrackingIndex;
18-
@end
19-
2015
@implementation PBGitIndexController
2116

2217
@synthesize contextSize;

0 commit comments

Comments
 (0)