Git - 💄 remove unused event handlers (#202727)

This commit is contained in:
Ladislau Szomoru 2024-01-18 15:25:31 +01:00 committed by GitHub
parent 284417d02a
commit 4a5169c7e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -681,12 +681,6 @@ export class Repository implements Disposable {
private _onDidChangeBranchProtection = new EventEmitter<void>();
readonly onDidChangeBranchProtection: Event<void> = this._onDidChangeBranchProtection.event;
private _onDidStartCommitMessageGeneration = new EventEmitter<void>();
readonly onDidStartCommitMessageGeneration: Event<void> = this._onDidStartCommitMessageGeneration.event;
private _onDidEndCommitMessageGeneration = new EventEmitter<void>();
readonly onDidEndCommitMessageGeneration: Event<void> = this._onDidEndCommitMessageGeneration.event;
@memoize
get onDidChangeOperations(): Event<void> {
return anyEvent(this.onRunOperation as Event<any>, this.onDidRunOperation as Event<any>);