Skip to content

Commit 9e4407a

Browse files
899: Refactored of function setAttribute.
1 parent 608017e commit 9e4407a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/com/magento/idea/magento2plugin/linemarker/xml/LineMarkerXmlTagDecorator.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,17 @@ public String getAttributeValue(@NonNls String s) {
149149

150150
@Override
151151
public XmlAttribute setAttribute(
152-
@NonNls String s, @NonNls String s1, @NonNls String s2
152+
@NonNls String s,
153+
@NonNls String s1,
154+
@NonNls String s2
153155
) throws IncorrectOperationException {
154156
return xmlTag.setAttribute(s, s1, s2);
155157
}
156158

157159
@Override
158160
public XmlAttribute setAttribute(
159-
@NonNls String s, @NonNls String s1
161+
@NonNls String s,
162+
@NonNls String s1
160163
) throws IncorrectOperationException {
161164
return xmlTag.setAttribute(s, s1);
162165
}

0 commit comments

Comments
 (0)