Skip to content

Commit f9ff15c

Browse files
committed
PBChangedFile: remove shouldBeDeleted boolean
We don't need this anymore
1 parent a6b7c0c commit f9ff15c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

PBChangedFile.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ typedef enum {
1919
NSString *path;
2020
BOOL hasCachedChanges;
2121
BOOL hasUnstagedChanges;
22-
BOOL shouldBeDeleted;
2322

2423
// Index and HEAD stuff, to be used to revert changes
2524
NSString *commitBlobSHA;
@@ -31,7 +30,7 @@ typedef enum {
3130

3231
@property (copy) NSString *path, *commitBlobSHA, *commitBlobMode;
3332
@property (assign) PBChangedFileStatus status;
34-
@property (assign) BOOL hasCachedChanges, hasUnstagedChanges, shouldBeDeleted;
33+
@property (assign) BOOL hasCachedChanges, hasUnstagedChanges;
3534

3635
- (NSImage *)icon;
3736
- (NSString *)indexInfo;

PBChangedFile.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
@implementation PBChangedFile
1313

14-
@synthesize path, status, hasCachedChanges, hasUnstagedChanges, commitBlobSHA, commitBlobMode, shouldBeDeleted;
14+
@synthesize path, status, hasCachedChanges, hasUnstagedChanges, commitBlobSHA, commitBlobMode;
1515

1616
- (id) initWithPath:(NSString *)p
1717
{

0 commit comments

Comments
 (0)