diff --git a/platform/lang-impl/src/com/intellij/codeInsight/hints/settings/ParameterNameHintsConfigurable.java b/platform/lang-impl/src/com/intellij/codeInsight/hints/settings/ParameterNameHintsConfigurable.java index 969a3b8f293a..6791e43f51e2 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/hints/settings/ParameterNameHintsConfigurable.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/hints/settings/ParameterNameHintsConfigurable.java @@ -145,12 +145,7 @@ public class ParameterNameHintsConfigurable extends DialogWrapper { Language language = (Language)myCurrentLanguageCombo.getModel().getSelectedItem(); myBlackLists.put(language, myEditorTextField.getText()); - myBlackLists.entrySet().forEach((entry) -> { - Language lang = entry.getKey(); - String text = entry.getValue(); - storeBlackListDiff(lang, text); - }); - + myBlackLists.forEach((lang, text) -> storeBlackListDiff(lang, text)); myOptions.forEach((option, checkBox) -> option.set(checkBox.isSelected())); }