Skip to content

Commit 830d2e6

Browse files
author
Vitaliy Boyko
committed
Static fixes 2
1 parent e08518b commit 830d2e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/magento/idea/magento2plugin/reference/provider/PhpClassReferenceProvider.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public PsiReference[] getReferencesByElement(
5252
for (int i = 0; i < fqnParts.length - 1; i++) {
5353
namespacePart = fqnParts[i];
5454

55-
namespace.append("\\");
56-
namespace.append(namespacePart);
55+
namespace.append("\\");//NOPMD
56+
namespace.append(namespacePart);//NOPMD
5757
final Collection<PhpNamespace> references =
5858
phpIndex.getNamespacesByName(namespace.toString().toLowerCase(
5959
new Locale("en","EN"))

0 commit comments

Comments
 (0)