Fix checkstyle issues This closes #3
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/74c6e2b0 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/74c6e2b0 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/74c6e2b0 Branch: refs/heads/master Commit: 74c6e2b0227204821ecf412f7c351c0342158030 Parents: e5eb148 Author: Daniel Kulp <[email protected]> Authored: Wed May 7 13:19:23 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Wed May 7 13:21:42 2014 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/cxf/staxutils/StaxSource.java | 1 - core/src/test/java/org/apache/cxf/staxutils/StaxUtilsTest.java | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/74c6e2b0/core/src/main/java/org/apache/cxf/staxutils/StaxSource.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/staxutils/StaxSource.java b/core/src/main/java/org/apache/cxf/staxutils/StaxSource.java index ca024fe..6b85345 100644 --- a/core/src/main/java/org/apache/cxf/staxutils/StaxSource.java +++ b/core/src/main/java/org/apache/cxf/staxutils/StaxSource.java @@ -19,7 +19,6 @@ package org.apache.cxf.staxutils; -import javax.xml.XMLConstants; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; http://git-wip-us.apache.org/repos/asf/cxf/blob/74c6e2b0/core/src/test/java/org/apache/cxf/staxutils/StaxUtilsTest.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/apache/cxf/staxutils/StaxUtilsTest.java b/core/src/test/java/org/apache/cxf/staxutils/StaxUtilsTest.java index d862e60..589b322 100644 --- a/core/src/test/java/org/apache/cxf/staxutils/StaxUtilsTest.java +++ b/core/src/test/java/org/apache/cxf/staxutils/StaxUtilsTest.java @@ -346,7 +346,8 @@ public class StaxUtilsTest extends Assert { public void testDefaultPrefixInRootElementWithJDKInternalCopyTransformer() throws Exception { TransformerFactory trf = null; try { - trf = TransformerFactory.newInstance("com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl", null); + trf = TransformerFactory + .newInstance("com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl", null); ByteArrayOutputStream baos = new ByteArrayOutputStream(); String xml = "<root xmlns=\"urn:org.apache.cxf:test\">Text</root>"; StringReader stringReader = new StringReader(xml);
