Skip to content

Commit

Permalink
clean(api): remove an unused private method
Browse files Browse the repository at this point in the history
  • Loading branch information
Siroshun09 committed Feb 27, 2023
1 parent f50d698 commit c8ed814
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,6 @@ private void checkPath(String path) {
return key;
}

private @Nullable Map<?, ?> getChild(@NotNull String key) {
var value = map.get(key);
return value instanceof Map ? (Map<?, ?>) value : null;
}

private @NotNull String[] splitPath(@NotNull String path) {
var builder = new StringBuilder();
var result = new String[Math.toIntExact(path.chars().filter(c -> c == PATH_SEPARATOR).count() + 1)];
Expand Down

0 comments on commit c8ed814

Please sign in to comment.