Skip to content

Commit

Permalink
aux window - fix hygiene (#199016)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero authored Nov 24, 2023
1 parent 93fc559 commit 016fdcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/browser/part.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ export abstract class MultiWindowParts<T extends IMultiWindowPart> extends Dispo
protected readonly _parts = new Set<T>();
get parts() { return Array.from(this._parts); }

protected abstract mainPart: T;
abstract readonly mainPart: T;

protected registerPart(part: T): IDisposable {
registerPart(part: T): IDisposable {
this._parts.add(part);

return this._register(toDisposable(() => this.unregisterPart(part)));
Expand Down

0 comments on commit 016fdcf

Please sign in to comment.