File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/com/magento/idea/magento2plugin/actions/generation Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,18 @@ public NewGraphQlResolverAction() {
28
28
29
29
@ Override
30
30
public void actionPerformed (final @ NotNull AnActionEvent event ) {
31
- DataContext dataContext = event .getDataContext ();
32
- IdeView view = LangDataKeys .IDE_VIEW .getData (dataContext );
31
+ final DataContext dataContext = event .getDataContext ();
32
+ final IdeView view = LangDataKeys .IDE_VIEW .getData (dataContext );
33
33
34
34
if (view == null ) {
35
35
return ;
36
36
}
37
- Project project = CommonDataKeys .PROJECT .getData (dataContext );
37
+ final Project project = CommonDataKeys .PROJECT .getData (dataContext );
38
38
39
39
if (project == null ) {
40
40
return ;
41
41
}
42
- PsiDirectory directory = view .getOrChooseDirectory ();
42
+ final PsiDirectory directory = view .getOrChooseDirectory ();
43
43
44
44
if (directory == null ) {
45
45
return ;
You can’t perform that action at this time.
0 commit comments