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 13
13
import com .intellij .openapi .actionSystem .LangDataKeys ;
14
14
import com .intellij .openapi .project .Project ;
15
15
import 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 ;
17
17
import javax .swing .Icon ;
18
18
import org .jetbrains .annotations .NotNull ;
19
19
@@ -44,17 +44,16 @@ public void actionPerformed(final @NotNull AnActionEvent event) {
44
44
return ;
45
45
}
46
46
47
- final NewProductEavAttributeDialog newProductEavAttributeDialog =
48
- getDialogWindow (project , directory );
49
- newProductEavAttributeDialog .open ();
47
+ final EavAttributeDialog eavAttributeDialog = getDialogWindow (project , directory );
48
+ eavAttributeDialog .open ();
50
49
}
51
50
52
51
@ Override
53
52
public boolean isDumbAware () {
54
53
return false ;
55
54
}
56
55
57
- protected abstract NewProductEavAttributeDialog getDialogWindow (
56
+ protected abstract EavAttributeDialog getDialogWindow (
58
57
Project project ,
59
58
PsiDirectory directory
60
59
);
Original file line number Diff line number Diff line change 9
9
import com .intellij .psi .PsiDirectory ;
10
10
import com .magento .idea .magento2plugin .MagentoIcons ;
11
11
import com .magento .idea .magento2plugin .actions .generation .dialog .NewProductEavAttributeDialog ;
12
+ import com .magento .idea .magento2plugin .actions .generation .dialog .eavattribute .EavAttributeDialog ;
12
13
13
14
public class NewProductEavAttributeAction extends NewEavAttributeAction {
14
15
@@ -20,7 +21,7 @@ public NewProductEavAttributeAction() {
20
21
}
21
22
22
23
@ Override
23
- protected NewProductEavAttributeDialog getDialogWindow (
24
+ protected EavAttributeDialog getDialogWindow (
24
25
final Project project ,
25
26
final PsiDirectory directory
26
27
) {
You can’t perform that action at this time.
0 commit comments