Skip to content

Commit 3701d25

Browse files
committed
[Java] Formatting.
1 parent f13e278 commit 3701d25

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sbe-tool/src/main/java/uk/co/real_logic/sbe/xml/XmlSchemaParser.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -347,12 +347,12 @@ private static String formatLocationInfo(final Node node)
347347

348348
return
349349
"at " +
350-
"<" + parentNode.getNodeName() +
351-
(getAttributeValueOrNull(parentNode, "name") == null ?
352-
">" : (" name=\"" + getAttributeValueOrNull(parentNode, "name") + "\"> ")) +
353-
"<" + node.getNodeName() +
354-
(getAttributeValueOrNull(node, "name") == null ?
355-
">" : (" name=\"" + getAttributeValueOrNull(node, "name") + "\"> "));
350+
"<" + parentNode.getNodeName() +
351+
(getAttributeValueOrNull(parentNode, "name") == null ?
352+
">" : (" name=\"" + getAttributeValueOrNull(parentNode, "name") + "\"> ")) +
353+
"<" + node.getNodeName() +
354+
(getAttributeValueOrNull(node, "name") == null ?
355+
">" : (" name=\"" + getAttributeValueOrNull(node, "name") + "\"> "));
356356
}
357357

358358
@FunctionalInterface

0 commit comments

Comments
 (0)