File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/com/magento/idea/magento2plugin/inspections/xml Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ public void visitFile(final PsiFile file) {
126126 && observerDisabledAttribute .getValue ().equals ("true" )
127127 && !observerName .isEmpty ()
128128 ) {
129- @ Nullable XmlAttributeValue valueElement = observerNameAttribute .getValueElement ();
129+ @ Nullable XmlAttributeValue valueElement
130+ = observerNameAttribute .getValueElement ();
130131 if (modulesWithSameObserverName .isEmpty () && valueElement != null ) {
131132 problemsHolder .registerProblem (
132133 valueElement ,
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ public void visitFile(final PsiFile file) {
120120 && pluginTypeDisabledAttribute .getValue ().equals ("true" )
121121 && !pluginTypeName .isEmpty ()
122122 ) {
123- @ Nullable XmlAttributeValue valueElement = pluginTypeNameAttribute .getValueElement ();
123+ @ Nullable XmlAttributeValue valueElement
124+ = pluginTypeNameAttribute .getValueElement ();
124125 if (modulesWithSamePluginName .isEmpty () && valueElement != null ) {
125126 problemsHolder .registerProblem (
126127 valueElement ,
You can’t perform that action at this time.
0 commit comments