File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/com/magento/idea/magento2plugin/actions/generation Expand file tree Collapse file tree 3 files changed +6
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1313import com .intellij .openapi .actionSystem .LangDataKeys ;
1414import com .intellij .openapi .project .Project ;
1515import com .intellij .psi .PsiDirectory ;
16- import com .magento .idea .magento2plugin .actions .generation .dialog .NewProductEavAttributeDialog ;
16+ import com .magento .idea .magento2plugin .actions .generation .dialog .eavattribute . EavAttributeDialog ;
1717import javax .swing .Icon ;
1818import org .jetbrains .annotations .NotNull ;
1919
@@ -44,17 +44,16 @@ public void actionPerformed(final @NotNull AnActionEvent event) {
4444 return ;
4545 }
4646
47- final NewProductEavAttributeDialog newProductEavAttributeDialog =
48- getDialogWindow (project , directory );
49- newProductEavAttributeDialog .open ();
47+ final EavAttributeDialog eavAttributeDialog = getDialogWindow (project , directory );
48+ eavAttributeDialog .open ();
5049 }
5150
5251 @ Override
5352 public boolean isDumbAware () {
5453 return false ;
5554 }
5655
57- protected abstract NewProductEavAttributeDialog getDialogWindow (
56+ protected abstract EavAttributeDialog getDialogWindow (
5857 Project project ,
5958 PsiDirectory directory
6059 );
Original file line number Diff line number Diff line change 99import com .intellij .psi .PsiDirectory ;
1010import com .magento .idea .magento2plugin .MagentoIcons ;
1111import com .magento .idea .magento2plugin .actions .generation .dialog .NewProductEavAttributeDialog ;
12+ import com .magento .idea .magento2plugin .actions .generation .dialog .eavattribute .EavAttributeDialog ;
1213
1314public class NewProductEavAttributeAction extends NewEavAttributeAction {
1415
@@ -20,7 +21,7 @@ public NewProductEavAttributeAction() {
2021 }
2122
2223 @ Override
23- protected NewProductEavAttributeDialog getDialogWindow (
24+ protected EavAttributeDialog getDialogWindow (
2425 final Project project ,
2526 final PsiDirectory directory
2627 ) {
You can’t perform that action at this time.
0 commit comments