ignore internal UI keys in dumps and in UI defaults inspector

This commit is contained in:
Karl Tauber
2021-10-28 20:47:47 +02:00
parent b77b338c7a
commit ef25575f85
5 changed files with 2160 additions and 5 deletions

View File

@@ -313,6 +313,10 @@ public class FlatUIDefaultsInspector
if( !(key instanceof String) )
continue;
// ignore internal keys
if( ((String)key).startsWith( "FlatLaf.internal." ) )
continue;
// ignore values of type Class
Object value = defaults.get( key );
if( value instanceof Class )