Skip to content

Commit 5a0041c

Browse files
authored
vscode-postrefactor: migrate to arrow functions
1 parent fc47274 commit 5a0041c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editors/code/src/installation/server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ function shouldDownloadServer(
8585
/**
8686
* Enforcing no reentrancy for this is best-effort.
8787
*/
88-
const downloadServer = notReentrant(async function downloadServer(
88+
const downloadServer = notReentrant(async (
8989
source: ArtifactSource.GithubRelease,
9090
config: Config,
91-
): Promise<null | string> {
91+
): Promise<null | string> => {
9292
try {
9393
const releaseInfo = await fetchArtifactReleaseInfo(source.repo, source.file, source.tag);
9494

0 commit comments

Comments
 (0)