diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 22:47:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-26 07:15:39 -0600 |
commit | d952ba2a7505021066d7fe5a01f14a02135edb65 (patch) | |
tree | 94d9ae62a70830e2280a0254a854e9e341a5ec45 /unoxml/qa/complex | |
parent | d304c532e8450d0e68d4275468c2f6ed9a68a6c3 (diff) |
Remove visual noise from unoxml
Change-Id: I405f2df6621197effd7e2b19844fe4d0bf7f58aa
Reviewed-on: https://gerrit.libreoffice.org/8335
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'unoxml/qa/complex')
-rw-r--r-- | unoxml/qa/complex/unoxml/DOMTest.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/unoxml/qa/complex/unoxml/DOMTest.java b/unoxml/qa/complex/unoxml/DOMTest.java index ed4374c5816a..3a44eaf4a41b 100644 --- a/unoxml/qa/complex/unoxml/DOMTest.java +++ b/unoxml/qa/complex/unoxml/DOMTest.java @@ -386,7 +386,7 @@ public class DOMTest } } - // XNode //////////////////////////////////////////////////// + // XNode { XNode xDocCloneN = xDoc.cloneNode(false); @@ -579,7 +579,7 @@ public class DOMTest xDF.appendChild(xElemFoo); - // XNode //////////////////////////////////////////////////// + // XNode XText xText = xDoc.createTextNode("foo"); XComment xComment = xDoc.createComment("foo"); @@ -933,7 +933,7 @@ public class DOMTest assertNull("XElement.removeAttributeNS", xElemFooNs.getAttributeNodeNS(ns, "foo")); - // XNode //////////////////////////////////////////////////// + // XNode XText xText = xDoc.createTextNode("foo"); XComment xComment = xDoc.createComment("foo"); @@ -1182,7 +1182,7 @@ public class DOMTest xAttr.setValue("bar"); assertEquals("XAttr.setValue()", "bar", xAttr.getValue()); - // XNode //////////////////////////////////////////////////// + // XNode { XNode xAttrCloneN = xAttr.cloneNode(false); @@ -1438,7 +1438,7 @@ public class DOMTest } assertEquals("XText.subStringData", "x", xText.subStringData(3, 1)); - // XNode //////////////////////////////////////////////////// + // XNode { XNode xTextCloneN = xText.cloneNode(false); @@ -1622,7 +1622,7 @@ public class DOMTest assertEquals("XCDATASection.subStringData", "x", xCDS.subStringData(3, 1)); - // XNode //////////////////////////////////////////////////// + // XNode { XNode xCDSCloneN = xCDS.cloneNode(false); @@ -1796,7 +1796,7 @@ public class DOMTest assertEquals("XComment.subStringData", "x", xComment.subStringData(3, 1)); - // XNode //////////////////////////////////////////////////// + // XNode { XNode xCommentCloneN = xComment.cloneNode(false); @@ -1923,7 +1923,7 @@ public class DOMTest xER.appendChild(xERChild); - // XNode //////////////////////////////////////////////////// + // XNode XText xText = xDoc.createTextNode("foo"); XComment xComment = xDoc.createComment("foo"); @@ -2130,7 +2130,7 @@ public class DOMTest xPI.setData("baz"); assertEquals("XProcessingInstruction.setData", "baz", xPI.getData()); - // XNode //////////////////////////////////////////////////// + // XNode { XNode xPICloneN = xPI.cloneNode(false); |