Skip to content

Commit d38d59f

Browse files
authored
vscode-postrefactor: prefer arrow functions
1 parent 9789f98 commit d38d59f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/installation/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function askToDownloadProperExtensionVersion(config: Config, reason = "")
109109
* each of them would result in a ton of code (especially accounting for cross-process
110110
* shared mutable `globalState` access). Enforcing no reentrancy for this is best-effort.
111111
*/
112-
const tryDownloadNightlyExtension = notReentrant(async function tryDownloadNightlyExtension(
112+
const tryDownloadNightlyExtension = notReentrant(async (
113113
config: Config,
114114
shouldDownload: (releaseInfo: ArtifactReleaseInfo) => boolean = () => true
115115
): Promise<never | void> {

0 commit comments

Comments
 (0)