Skip to content

Commit 89dc16d

Browse files
committed
Fixed static test failures
1 parent 2d1075a commit 89dc16d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@
3333
import org.jetbrains.annotations.NotNull;
3434
import org.jetbrains.annotations.Nullable;
3535

36+
@SuppressWarnings({
37+
"PMD.TooManyFields",
38+
"PMD.TooManyMethods"
39+
})
3640
public class SettingsForm implements PhpFrameworkConfigurable {
37-
3841
private final Project project;
3942
private JCheckBox pluginEnabled;
4043
private JButton buttonReindex;
@@ -95,7 +98,7 @@ public void mouseClicked(final MouseEvent event) {
9598
return (JComponent) panel;
9699
}
97100

98-
private void refreshFormStatus(boolean isEnabled) {
101+
private void refreshFormStatus(final boolean isEnabled) {
99102
buttonReindex.setEnabled(isEnabled);
100103
regenerateUrnMapButton.setEnabled(isEnabled);
101104
magentoVersion.setEnabled(isEnabled);

0 commit comments

Comments
 (0)