Skip to content

Commit 8052405

Browse files
Merge branch 'master' into release
2 parents b7f067a + 1a0e0c8 commit 8052405

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/main.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ export async function activate(context: vscode.ExtensionContext): Promise<{ init
4545

4646
return {
4747
initializationFinished: Promise.all([omniSharpPromise, coreClrDebugPromise])
48-
.then(a => {})
48+
.then(promiseResult => {
49+
// This promise resolver simply swallows the result of Promise.all. When we decide we want to expose this level of detail
50+
// to other extensions then we will design that return type and implement it here.
51+
})
4952
};
5053
}
5154

test/integrationTests/testAssets/testAssets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class TestAssetWorkspace {
4747
}
4848

4949
get vsCodeDirectoryPath(): string {
50-
return path.join(vscode.workspace.rootPath, ".vscode");;
50+
return path.join(vscode.workspace.rootPath, ".vscode");
5151
}
5252

5353
get launchJsonPath(): string {

0 commit comments

Comments
 (0)