WIP: biome config

This commit is contained in:
Aleksey 2020-11-17 19:20:15 +03:00
parent 3ed2bd724c
commit e1a54d06cb
3 changed files with 18 additions and 161 deletions

View file

@ -48,10 +48,9 @@ public abstract class Config {
return str != null ? str : defaultValue;
}
@Nullable
public String getString(String category, String key) {
String str = configKeeper.getValue(category, key);
return str != null ? str : null;
return str != null ? str : "";
}
public boolean setString(String category, String key, String value) {