Fixes related config settings now being JsonElement

This commit is contained in:
Kris De Volder
2018-03-19 11:25:31 -07:00
parent 68bb25d673
commit 1d287b0529
8 changed files with 71 additions and 23 deletions

View File

@@ -24,7 +24,7 @@ public class BootJavaConfig {
private Settings settings = new Settings(null);
public boolean isBootHintsEnabled() {
Boolean enabled = (Boolean) settings.getProperty("boot-java", "boot-hints", "on");
Boolean enabled = settings.getBoolean("boot-java", "boot-hints", "on");
return enabled == null || enabled.booleanValue();
}