From 18527a1dc57ce57c360d677302c66597bdc1d789 Mon Sep 17 00:00:00 2001 From: Marko Milic Date: Tue, 22 Oct 2024 20:48:52 +0200 Subject: [PATCH] refactor: remove unused methods in ContainerNode --- src/views/containerNode.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/views/containerNode.ts b/src/views/containerNode.ts index 06bc9930..71284039 100644 --- a/src/views/containerNode.ts +++ b/src/views/containerNode.ts @@ -47,14 +47,6 @@ export class ContainerNode extends DataNode { return this._nodeData.displayName ?? this._nodeData.name; } - public isMavenType(): boolean { - return this.getContainerType() == ContainerType.Maven; - } - - public isGradleType(): boolean { - return this.getContainerType() == ContainerType.Gradle; - } - protected async loadData(): Promise { return Jdtls.getPackageData({ kind: NodeKind.Container, projectUri: this._project.uri, path: this.path }); }