Skip to content

Commit

Permalink
[Java] Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed May 1, 2017
1 parent f13e278 commit 3701d25
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3701d25

Please sign in to comment.