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() {
2828
2929 @ Override
3030 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 );
3333
3434 if (view == null ) {
3535 return ;
3636 }
37- Project project = CommonDataKeys .PROJECT .getData (dataContext );
37+ final Project project = CommonDataKeys .PROJECT .getData (dataContext );
3838
3939 if (project == null ) {
4040 return ;
4141 }
42- PsiDirectory directory = view .getOrChooseDirectory ();
42+ final PsiDirectory directory = view .getOrChooseDirectory ();
4343
4444 if (directory == null ) {
4545 return ;
You can’t perform that action at this time.
0 commit comments