Theme Editor: fixed NPE (caused by no longer implemented base files support)

This commit is contained in:
Karl Tauber
2021-02-05 23:33:26 +01:00
parent b631bcc0db
commit bc443f47f1

View File

@@ -179,6 +179,9 @@ class FlatThemePropertiesSupport
for( Object key : getProperties().keySet() )
allKeysCache.add( (String) key );
if( baseFiles == null )
return allKeysCache;
for( int i = 0; i < baseFiles.length; i++ ) {
for( Object key : getBaseProperties( i ).keySet() )
allKeysCache.add( (String) key );