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 ddc271b commit 6672172Copy full SHA for 6672172
src/com/magento/idea/magento2plugin/actions/generation/generator/QueueCommunicationGenerator.java
@@ -57,7 +57,9 @@ public PsiFile generate(final String actionName) {
57
boolean topicTagIsGenerated = true;
58
XmlTag topicTag = null;
59
for (final XmlTag tag: topicTags) {
60
- if (communicationData.getTopicName().equals(tag.getAttribute(ATTRIBUTE_NAME).getValue())) {
+ if (communicationData.getTopicName().equals(
61
+ tag.getAttribute(ATTRIBUTE_NAME).getValue())
62
+ ) {
63
topicTagIsGenerated = false;
64
topicTag = tag;
65
break;
0 commit comments