We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aab3964 commit 8bfcf00Copy full SHA for 8bfcf00
src/com/magento/idea/magento2plugin/inspections/xml/PluginDeclarationInspection.java
@@ -71,6 +71,9 @@ public void visitFile(final PsiFile file) {
71
72
final XmlAttribute pluginNameAttribute =
73
pluginXmlTag.getAttribute(ModuleDiXml.NAME_ATTR);
74
+ if (pluginNameAttribute == null) {
75
+ continue;
76
+ }
77
78
final String pluginNameAttributeValue = pluginNameAttribute.getValue();
79
if (pluginNameAttributeValue == null) {
0 commit comments