mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-12 23:07:15 -06:00
UIDefaultsLoader: do not add properties with empty values to UI defaults (value was an empty string)
This commit is contained in:
@@ -355,7 +355,7 @@ class UIDefaultsLoader
|
||||
value = value.trim();
|
||||
|
||||
// null
|
||||
if( value.equals( "null" ) ) {
|
||||
if( value.equals( "null" ) || value.isEmpty() ) {
|
||||
resultValueType[0] = ValueType.NULL;
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user