From 3701d2562b7b15bd44d4b2cc814fb53329405795 Mon Sep 17 00:00:00 2001 From: Martin Thompson Date: Mon, 1 May 2017 16:02:55 +0100 Subject: [PATCH] [Java] Formatting. --- .../uk/co/real_logic/sbe/xml/XmlSchemaParser.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sbe-tool/src/main/java/uk/co/real_logic/sbe/xml/XmlSchemaParser.java b/sbe-tool/src/main/java/uk/co/real_logic/sbe/xml/XmlSchemaParser.java index f46cc4bbb0..341dbfca28 100644 --- a/sbe-tool/src/main/java/uk/co/real_logic/sbe/xml/XmlSchemaParser.java +++ b/sbe-tool/src/main/java/uk/co/real_logic/sbe/xml/XmlSchemaParser.java @@ -347,12 +347,12 @@ private static String formatLocationInfo(final Node node) return "at " + - "<" + parentNode.getNodeName() + - (getAttributeValueOrNull(parentNode, "name") == null ? - ">" : (" name=\"" + getAttributeValueOrNull(parentNode, "name") + "\"> ")) + - "<" + node.getNodeName() + - (getAttributeValueOrNull(node, "name") == null ? - ">" : (" name=\"" + getAttributeValueOrNull(node, "name") + "\"> ")); + "<" + parentNode.getNodeName() + + (getAttributeValueOrNull(parentNode, "name") == null ? + ">" : (" name=\"" + getAttributeValueOrNull(parentNode, "name") + "\"> ")) + + "<" + node.getNodeName() + + (getAttributeValueOrNull(node, "name") == null ? + ">" : (" name=\"" + getAttributeValueOrNull(node, "name") + "\"> ")); } @FunctionalInterface