Skip to content

Commit

Permalink
Implement Config.toString
Browse files Browse the repository at this point in the history
  • Loading branch information
EverNife committed Jul 15, 2024
1 parent 89f5a34 commit 9a845c0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,10 @@ public List<String> getStringList(String path, List<String> def) {

List<L> result = (List<L>) getLoadableList(path, firstValue.getClass());
return result.size() > 0 ? result : loadableListDefault;
}

@Override
public String toString() {
return getConfiguration().toString();
}
}

0 comments on commit 9a845c0

Please sign in to comment.