mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-24 04:54:21 +08:00
style: enable RedundantModifier
in checkstyle (#5140)
This commit is contained in:
@ -127,7 +127,7 @@ class Trie {
|
||||
TrieNode root;
|
||||
char endSymbol;
|
||||
|
||||
public Trie() {
|
||||
Trie() {
|
||||
this.root = new TrieNode();
|
||||
this.endSymbol = '*';
|
||||
}
|
||||
|
Reference in New Issue
Block a user