Skip to content

Commit 6672172

Browse files
committed
Fixed CheckStyle issues
1 parent ddc271b commit 6672172

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/com/magento/idea/magento2plugin/actions/generation/generator/QueueCommunicationGenerator.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ public PsiFile generate(final String actionName) {
5757
boolean topicTagIsGenerated = true;
5858
XmlTag topicTag = null;
5959
for (final XmlTag tag: topicTags) {
60-
if (communicationData.getTopicName().equals(tag.getAttribute(ATTRIBUTE_NAME).getValue())) {
60+
if (communicationData.getTopicName().equals(
61+
tag.getAttribute(ATTRIBUTE_NAME).getValue())
62+
) {
6163
topicTagIsGenerated = false;
6264
topicTag = tag;
6365
break;

0 commit comments

Comments
 (0)