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

Remove no longer required parameter

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