Skip to content

Commit c960b1e

Browse files
author
sailok.chinta
committed
feat: fix pmd issue
1 parent c94991c commit c960b1e

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/thealgorithms/datastructures/tries

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/datastructures/tries/TrieNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public Map<Character, TrieNode> getChildren() {
2929
public void setChildren(Map<Character, TrieNode> children) {
3030
this.children = children;
3131
}
32+
*/
3233

3334
public char getValue() {
3435
return value;
@@ -37,7 +38,6 @@ public char getValue() {
3738
public void setValue(char value) {
3839
this.value = value;
3940
}
40-
*/
4141

4242
public boolean isEnd() {
4343
return end;

0 commit comments

Comments
 (0)