mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-08 15:00:54 +03:00
IntelliJ Themes: fixed ModifyCollectionInEnhancedForLoop Error Prone error
This commit is contained in:
@@ -272,7 +272,7 @@ public class IntelliJTheme
|
|||||||
|
|
||||||
// override UI defaults with theme specific wildcard replacements
|
// override UI defaults with theme specific wildcard replacements
|
||||||
if( !wildcards.isEmpty() ) {
|
if( !wildcards.isEmpty() ) {
|
||||||
for( Object key : defaults.keySet() ) {
|
for( Object key : defaults.keySet().toArray() ) {
|
||||||
int dot;
|
int dot;
|
||||||
if( !(key instanceof String) ||
|
if( !(key instanceof String) ||
|
||||||
(dot = ((String)key).lastIndexOf( '.' )) < 0 )
|
(dot = ((String)key).lastIndexOf( '.' )) < 0 )
|
||||||
|
|||||||
Reference in New Issue
Block a user