Skip to content

Commit

Permalink
changed visibility of members on ConfigValue to public
Browse files Browse the repository at this point in the history
  • Loading branch information
BlvckBytes committed Oct 26, 2024
1 parent 4ade69c commit 18073f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/me/blvckbytes/bbconfigmapper/ConfigValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@

public class ConfigValue implements IEvaluable {

protected final @Nullable Object value;
private final IExpressionEvaluator evaluator;
public final @Nullable Object value;
public final IExpressionEvaluator evaluator;

public ConfigValue(@Nullable Object value, IExpressionEvaluator evaluator) {
this.value = value;
Expand Down

0 comments on commit 18073f1

Please sign in to comment.