提交 2ea221bd 编写于 作者: M Matt Bierner

Remove no longer required parameter

上级 bbb988ac
......@@ -20,7 +20,7 @@ export class WebviewIconManager {
) {
this._configService.onDidChangeConfiguration(e => {
if (e.affectsConfiguration('workbench.iconTheme')) {
this.updateStyleSheet(this._lifecycleService);
this.updateStyleSheet();
}
});
}
......@@ -42,11 +42,11 @@ export class WebviewIconManager {
this._icons.delete(webviewId);
}
this.updateStyleSheet(this._lifecycleService);
this.updateStyleSheet();
}
private async updateStyleSheet(lifecycleService: ILifecycleService) {
await lifecycleService.when(LifecyclePhase.Starting);
private async updateStyleSheet() {
await this._lifecycleService.when(LifecyclePhase.Starting);
try {
const cssRules: string[] = [];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册