Skip to content

Commit b29c324

Browse files
committed
598: Fixed test
1 parent fa39c70 commit b29c324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/magento/idea/magento2plugin/actions/generation/dialog/AbstractDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ private int getParentTabPaneForComponent(final @NotNull Container component) {
252252
}
253253

254254
@Override
255-
public void setVisible(boolean b) {
255+
public void setVisible(final boolean status) {
256256
new PlaceholderInitializerUtil(this).initialize();
257-
super.setVisible(b);
257+
super.setVisible(status);
258258
}
259259

260260
/**

0 commit comments

Comments
 (0)