Skip to content

Commit a6574ed

Browse files
authored
Fix bug when no main method (#290)
1 parent 60efe57 commit a6574ed

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/exportJarSteps/ResolveMainMethodExecutor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export class ResolveMainMethodExecutor implements IExportJarStepExecutor {
4646
}
4747
const noMainClassItem: IJarQuickPickItem = {
4848
label: "<without main class>",
49+
description: "",
4950
};
5051
pickItems.push(noMainClassItem);
5152
const disposables: Disposable[] = [];

src/exportJarSteps/utility.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Licensed under the MIT license.
33

44
import { QuickInputButtons, QuickPick, QuickPickItem, window } from "vscode";
5-
import { IExportJarStepExecutor } from "./IExportJarStepExecutor";
65

76
export interface IJarQuickPickItem extends QuickPickItem {
87
uri?: string;

0 commit comments

Comments
 (0)