Skip to content

Commit 949bbc9

Browse files
committed
Fix brace
1 parent 5050d46 commit 949bbc9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lsptoolshost/dotnetRuntimeExtensionResolver.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ export class DotnetRuntimeExtensionResolver implements IHostExecutableResolver {
3434
async getHostExecutableInfo(options: Options): Promise<HostExecutableInformation> {
3535
let dotnetRuntimePath = options.commonOptions.dotnetPath;
3636
const serverPath = this.getServerPath(options, this.platformInfo);
37-
if (!dotnetRuntimePath)
38-
{
37+
if (!dotnetRuntimePath) {
3938
let dotnetInfo = await this.acquireDotNetProcessDependencies(serverPath);
4039
dotnetRuntimePath = path.dirname(dotnetInfo.path);
4140
}

0 commit comments

Comments
 (0)