Skip to content

Commit

Permalink
refactor: remove unused methods in ContainerNode
Browse files Browse the repository at this point in the history
  • Loading branch information
mamilic committed Oct 22, 2024
1 parent 79a1cf9 commit 18527a1
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/views/containerNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<INodeData[]> {
return Jdtls.getPackageData({ kind: NodeKind.Container, projectUri: this._project.uri, path: this.path });
}
Expand Down

0 comments on commit 18527a1

Please sign in to comment.