Skip to content

Commit

Permalink
spacing!!
Browse files Browse the repository at this point in the history
  • Loading branch information
TelepathicGrunt committed Nov 2, 2024
1 parent 96f5c77 commit 2044346
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ public <V extends Comparable<? super V>> ConfigValue<V> defineInRange(String pat
public <V extends Comparable<? super V>> ConfigValue<V> defineInRange(List<String> path, Supplier<V> defaultSupplier, V min, V max, Class<V> clazz) {
Range<V> range = new Range<>(clazz, min, max);
context.setRange(range);
comment("Default: " + defaultSupplier.get());
comment("Range: " + range);
comment(" Default: " + defaultSupplier.get());
comment(" Range: " + range);
return define(path, defaultSupplier, range);
}

Expand Down

0 comments on commit 2044346

Please sign in to comment.