Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Bierner <matb@microsoft.com>2021-04-21 23:36:12 +0300
committerMatt Bierner <matb@microsoft.com>2021-04-21 23:40:44 +0300
commit731402dce225ce25d42a7b173361650a54bf52ad (patch)
treeac10722de1df0c768cdd60747b77d53ca14a0d43 /src/vs/workbench/contrib/extensions/electron-sandbox
parent190e902afe6132b25714750035df13efd94ab409 (diff)
async override -> override async
Diffstat (limited to 'src/vs/workbench/contrib/extensions/electron-sandbox')
-rw-r--r--src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts b/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts
index ce16a3b34d9..0ff09d630a0 100644
--- a/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts
+++ b/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts
@@ -26,7 +26,7 @@ export class OpenExtensionsFolderAction extends Action {
super(id, label, undefined, true);
}
- async override run(): Promise<void> {
+ override async run(): Promise<void> {
const extensionsHome = URI.file(this.environmentService.extensionsPath);
const file = await this.fileService.resolve(extensionsHome);