Skip to content

Commit

Permalink
Refactor: fix comparison operator
Browse files Browse the repository at this point in the history
  • Loading branch information
mamilic committed Oct 29, 2024
1 parent 234105e commit 0c1a8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/containerNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class ContainerNode extends DataNode {
}

public isMavenType(): boolean {
return this._containerType == ContainerType.Maven;
return this._containerType === ContainerType.Maven;
}

protected async loadData(): Promise<INodeData[]> {
Expand Down

0 comments on commit 0c1a8d3

Please sign in to comment.