@@ -6,12 +6,11 @@ import { globby } from "globby";
66import * as _ from "lodash" ;
77import { basename , dirname , extname , isAbsolute , join , normalize , relative } from "path" ;
88import { Disposable , ProgressLocation , QuickInputButtons , QuickPickItem , Uri , window , WorkspaceFolder } from "vscode" ;
9- import { sendInfo } from "vscode-extension-telemetry-wrapper" ;
109import { Jdtls } from "../../java/jdtls" ;
1110import { INodeData } from "../../java/nodeData" ;
1211import { IExportJarStepExecutor } from "./IExportJarStepExecutor" ;
1312import { IClasspath , IStepMetadata } from "./IStepMetadata" ;
14- import { createPickBox , ExportJarMessages , ExportJarStep , ExportJarTargets , getExtensionApi , toPosixPath } from "./utility" ;
13+ import { createPickBox , ExportJarMessages , ExportJarStep , getExtensionApi , toPosixPath } from "./utility" ;
1514
1615export class GenerateJarExecutor implements IExportJarStepExecutor {
1716
@@ -34,10 +33,7 @@ export class GenerateJarExecutor implements IExportJarStepExecutor {
3433 throw new Error ( ExportJarMessages . fieldUndefinedMessage ( ExportJarMessages . Field . WORKSPACEFOLDER , this . currentStep ) ) ;
3534 }
3635 let destPath = "" ;
37- if ( stepMetadata . outputPath === ExportJarTargets . SETTING_ASKUSER || stepMetadata . outputPath === "" ) {
38- if ( stepMetadata . outputPath === ExportJarTargets . SETTING_ASKUSER ) {
39- sendInfo ( "" , { exportJarPath : stepMetadata . outputPath } ) ;
40- }
36+ if ( stepMetadata . outputPath === "" ) {
4137 const outputUri : Uri | undefined = await window . showSaveDialog ( {
4238 defaultUri : Uri . file ( join ( folder . uri . fsPath , `${ folder . name } .jar` ) ) ,
4339 filters : {
0 commit comments