Skip to content

Commit 54eb65e

Browse files
committed
Fixed static test failures
1 parent 2d1075a commit 54eb65e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/magento/idea/magento2plugin/project/SettingsForm.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
import org.jetbrains.annotations.NotNull;
3434
import org.jetbrains.annotations.Nullable;
3535

36+
@SuppressWarnings({"PMD.TooManyFields"})
3637
public class SettingsForm implements PhpFrameworkConfigurable {
37-
3838
private final Project project;
3939
private JCheckBox pluginEnabled;
4040
private JButton buttonReindex;
@@ -95,7 +95,7 @@ public void mouseClicked(final MouseEvent event) {
9595
return (JComponent) panel;
9696
}
9797

98-
private void refreshFormStatus(boolean isEnabled) {
98+
private void refreshFormStatus(final boolean isEnabled) {
9999
buttonReindex.setEnabled(isEnabled);
100100
regenerateUrnMapButton.setEnabled(isEnabled);
101101
magentoVersion.setEnabled(isEnabled);

0 commit comments

Comments
 (0)