Skip to content

Commit

Permalink
Mark problematic overrides as protected override (#6112)
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarenerd authored Jan 24, 2025
1 parent 42fad77 commit 5868434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/panecomposite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export abstract class PaneComposite extends Composite implements IPaneComposite
}

// --- Start Positron ---
override saveState(): void {
protected override saveState(): void {
super.saveState();
}
// --- End Positron ---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ export class PlotsSizingPolicyAction extends AbstractPlotsAction {
return items;
}

override plotActionFilter(plotClient: IPositronPlotClient): boolean {
protected override plotActionFilter(plotClient: IPositronPlotClient): boolean {
return plotClient instanceof PlotClientInstance;
}
}

0 comments on commit 5868434

Please sign in to comment.