Skip to content

Commit

Permalink
Fix global configuration loading
Browse files Browse the repository at this point in the history
  • Loading branch information
HttpMarco committed Jan 2, 2025
1 parent e325b24 commit a39c841
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ public class Configuration<T> {
public Configuration(String target, T defaultValue) {
this.target = Path.of(target);
this.value = defaultValue;

// read default configuration
this.read();
}

@SneakyThrows
Expand Down

0 comments on commit a39c841

Please sign in to comment.