File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,6 @@ typedef enum branchFilterTypes {
84
84
85
85
- (NSURL *) gitURL ;
86
86
87
- - (BOOL )executeHook : (NSString *)name output : (NSString **)output GITX_DEPRECATED;
88
- - (BOOL )executeHook : (NSString *)name withArgs : (NSArray *) arguments output : (NSString **)output GITX_DEPRECATED;
89
-
90
87
- (BOOL )executeHook : (NSString *)name error : (NSError **)error ;
91
88
- (BOOL )executeHook : (NSString *)name arguments : (NSArray *)arguments error : (NSError **)error ;
92
89
- (BOOL )executeHook : (NSString *)name arguments : (NSArray *)arguments output : (NSString **)outputPtr error : (NSError **)error ;
Original file line number Diff line number Diff line change @@ -1061,14 +1061,6 @@ - (GTSubmodule *)submoduleAtPath:(NSString *)path error:(NSError **)error;
1061
1061
1062
1062
#pragma mark Hooks
1063
1063
1064
- - (BOOL )executeHook : (NSString *)name output : (NSString **)output {
1065
- return [self executeHook: name withArgs: [NSArray array ] output: output];
1066
- }
1067
-
1068
- - (BOOL )executeHook : (NSString *)name withArgs : (NSArray *)arguments output : (NSString **)outputPtr {
1069
- return [self executeHook: name arguments: arguments output: outputPtr error: NULL ];
1070
- }
1071
-
1072
1064
- (BOOL )executeHook : (NSString *)name error : (NSError **)error {
1073
1065
return [self executeHook: name arguments: @[] error: error];
1074
1066
}
You can’t perform that action at this time.
0 commit comments