A little bit refactor

This commit is contained in:
Aleksey 2020-12-31 12:51:25 +03:00
parent 5133628dba
commit cef6cf0fd2
3 changed files with 21 additions and 18 deletions

View file

@ -8,7 +8,7 @@ public class ConfigKey {
private final boolean root;
public ConfigKey(String entry, String... path) {
validate(entry, path);
this.validate(entry);
this.path = path;
this.entry = entry;
this.root = path.length == 0 || (path.length == 1 && path[0].isEmpty());
@ -74,7 +74,7 @@ public class ConfigKey {
return String.format("%s:%s", p, entry);
}
private void validate(String entry, String... path) {
private void validate(String entry) {
if (entry == null) {
throw new NullPointerException("Config key must be not null!");
}