Skip to content

Commit

Permalink
use boolean instead of Boolean in SpecCompatibility.createFromConfig()
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Nov 28, 2024
1 parent 820aa77 commit f2834d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public SpecCompatibility(@ConfigProperty(name = PROPERTY, defaultValue = "true")
}

public static SpecCompatibility createFromConfig() {
Boolean value = ConfigProvider.getConfig().getOptionalValue(PROPERTY, boolean.class).orElse(true);
boolean value = ConfigProvider.getConfig().getOptionalValue(PROPERTY, boolean.class).orElse(true);
return new SpecCompatibility(value);
}

Expand Down

0 comments on commit f2834d3

Please sign in to comment.