Skip to content

Commit 4a5169c

Browse files
authored
Git - 💄 remove unused event handlers (microsoft#202727)
1 parent 284417d commit 4a5169c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

extensions/git/src/repository.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -681,12 +681,6 @@ export class Repository implements Disposable {
681681
private _onDidChangeBranchProtection = new EventEmitter<void>();
682682
readonly onDidChangeBranchProtection: Event<void> = this._onDidChangeBranchProtection.event;
683683

684-
private _onDidStartCommitMessageGeneration = new EventEmitter<void>();
685-
readonly onDidStartCommitMessageGeneration: Event<void> = this._onDidStartCommitMessageGeneration.event;
686-
687-
private _onDidEndCommitMessageGeneration = new EventEmitter<void>();
688-
readonly onDidEndCommitMessageGeneration: Event<void> = this._onDidEndCommitMessageGeneration.event;
689-
690684
@memoize
691685
get onDidChangeOperations(): Event<void> {
692686
return anyEvent(this.onRunOperation as Event<any>, this.onDidRunOperation as Event<any>);

0 commit comments

Comments
 (0)