Skip to content

Commit c1a45ae

Browse files
authored
Refactor PatriciaTrie constructor for clarity
1 parent bf8a751 commit c1a45ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ private static final class Node<V> {
3232
private int size; // number of stored keys
3333

3434
/** Creates an empty Patricia trie. */
35-
public PatriciaTrie() {}
36-
35+
public PatriciaTrie() {
36+
+ }
3737
/**
3838
* Inserts or updates the value associated with {@code key}.
3939
*

0 commit comments

Comments
 (0)