[OLINGO-987] fixed checkstyle issue Signed-off-by: Christian Amend <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/d3fad1b1 Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/d3fad1b1 Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/d3fad1b1 Branch: refs/heads/master Commit: d3fad1b16691cb8e515866e89e2c2f53a0aeae5b Parents: 0760e13 Author: Morten Riedel <[email protected]> Authored: Tue Jul 26 10:54:58 2016 +0200 Committer: Christian Amend <[email protected]> Committed: Wed Jul 27 10:21:17 2016 +0200 ---------------------------------------------------------------------- .../server/core/serializer/xml/ODataXmlSerializerTest.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/d3fad1b1/lib/server-test/src/test/java/org/apache/olingo/server/core/serializer/xml/ODataXmlSerializerTest.java ---------------------------------------------------------------------- diff --git a/lib/server-test/src/test/java/org/apache/olingo/server/core/serializer/xml/ODataXmlSerializerTest.java b/lib/server-test/src/test/java/org/apache/olingo/server/core/serializer/xml/ODataXmlSerializerTest.java index 4139c22..7407f06 100644 --- a/lib/server-test/src/test/java/org/apache/olingo/server/core/serializer/xml/ODataXmlSerializerTest.java +++ b/lib/server-test/src/test/java/org/apache/olingo/server/core/serializer/xml/ODataXmlSerializerTest.java @@ -1366,7 +1366,7 @@ public class ODataXmlSerializerTest { } @Test - public void entitySetCompCollComp() throws SAXException, DataProvider.DataProviderException, SerializerException, IOException{ + public void entitySetCompCollComp() throws Exception{ final EdmEntitySet edmEntitySet = entityContainer.getEntitySet("ESCompCollComp"); final EntityCollection entitySet = data.readAll(edmEntitySet); long currentTimeMillis = System.currentTimeMillis(); @@ -1395,7 +1395,8 @@ public class ODataXmlSerializerTest { "<a:name/>\n" + "</a:author>\n" + "<a:link rel=\"edit\" href=\"ESCompCollComp(32767)\"/>\n" + - "<a:category scheme=\"http://docs.oasis-open.org/odata/ns/scheme\" term=\"#olingo.odata.test1.ETCompCollComp\"/>\n" + + "<a:category scheme=\"http://docs.oasis-open.org/odata/ns/scheme\" " + + "term=\"#olingo.odata.test1.ETCompCollComp\"/>\n" + "<a:content type=\"application/xml\">\n" + "<m:properties>\n" + "<d:PropertyInt16 m:type=\"Int16\">32767</d:PropertyInt16>\n" + @@ -1427,7 +1428,8 @@ public class ODataXmlSerializerTest { "<a:name/>\n" + "</a:author>\n" + "<a:link rel=\"edit\" href=\"ESCompCollComp(12345)\"/>\n" + - "<a:category scheme=\"http://docs.oasis-open.org/odata/ns/scheme\" term=\"#olingo.odata.test1.ETCompCollComp\"/>\n" + + "<a:category scheme=\"http://docs.oasis-open.org/odata/ns/scheme\" " + + "term=\"#olingo.odata.test1.ETCompCollComp\"/>\n" + "<a:content type=\"application/xml\">\n" + "<m:properties>\n" + "<d:PropertyInt16 m:type=\"Int16\">12345</d:PropertyInt16>\n" +
