diff --git a/src/liberty/libertyProject.ts b/src/liberty/libertyProject.ts index 0d9897d9..76598814 100644 --- a/src/liberty/libertyProject.ts +++ b/src/liberty/libertyProject.ts @@ -18,7 +18,7 @@ import { EXCLUDED_DIR_PATTERN, LIBERTY_GRADLE_PROJECT, LIBERTY_GRADLE_PROJECT_CO import { BuildFileImpl, GradleBuildFile } from "../util/buildFile"; import { DashboardData } from "./dashboard"; import { BaseLibertyProject } from "./baseLibertyProject"; -import path = require("path"); + const MAVEN_ICON = "maven-tag.png"; const GRADLE_ICON = "gradle-tag-1.png"; @@ -215,9 +215,9 @@ export class ProjectProvider implements vscode.TreeDataProvider // eslint-disable-next-line @typescript-eslint/no-unused-vars public async getChildren(element?: LibertyProject): Promise { - if (this.projects.size <= 0 ) { - return Promise.resolve([]); - } + if (this.projects.size <= 0) { + return Promise.resolve([]); + } if (vscode.workspace.workspaceFolders === undefined) { vscode.window.showInformationMessage(localize("no.liberty.project.found.in.empty.workspace")); return [];