From 5e432267c5a3a3a7ee317a17d899a792ae849cf5 Mon Sep 17 00:00:00 2001 From: Shi Chen Date: Mon, 24 May 2021 17:14:49 +0800 Subject: [PATCH] remove "done" --- src/exportJarSteps/utility.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exportJarSteps/utility.ts b/src/exportJarSteps/utility.ts index 4ffba226..481e5e77 100644 --- a/src/exportJarSteps/utility.ts +++ b/src/exportJarSteps/utility.ts @@ -127,7 +127,7 @@ export function successMessage(outputFileName: string | undefined): void { openInExplorer = "Open Containing Folder"; } window.showInformationMessage("Successfully exported jar to" + EOL + outputFileName, - openInExplorer, "Done").then((messageResult) => { + openInExplorer).then((messageResult) => { if (messageResult === openInExplorer) { commands.executeCommand("revealFileInOS", Uri.file(outputFileName)); }