Repository: cxf-xjc-utils Updated Branches: refs/heads/master 8f06f45b2 -> b897b2680
Fix checkstyle Project: http://git-wip-us.apache.org/repos/asf/cxf-xjc-utils/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-xjc-utils/commit/b897b268 Tree: http://git-wip-us.apache.org/repos/asf/cxf-xjc-utils/tree/b897b268 Diff: http://git-wip-us.apache.org/repos/asf/cxf-xjc-utils/diff/b897b268 Branch: refs/heads/master Commit: b897b26802dd616f5bf30b1a52a760d66f838377 Parents: 8f06f45 Author: Daniel Kulp <[email protected]> Authored: Mon Nov 10 13:25:51 2014 -0500 Committer: Daniel Kulp <[email protected]> Committed: Mon Nov 10 13:25:51 2014 -0500 ---------------------------------------------------------------------- .../org/apache/cxf/maven_plugin/XSDToJavaRunner.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-xjc-utils/blob/b897b268/cxf-xjc-plugin/src/main/java/org/apache/cxf/maven_plugin/XSDToJavaRunner.java ---------------------------------------------------------------------- diff --git a/cxf-xjc-plugin/src/main/java/org/apache/cxf/maven_plugin/XSDToJavaRunner.java b/cxf-xjc-plugin/src/main/java/org/apache/cxf/maven_plugin/XSDToJavaRunner.java index be35577..96083b0 100644 --- a/cxf-xjc-plugin/src/main/java/org/apache/cxf/maven_plugin/XSDToJavaRunner.java +++ b/cxf-xjc-plugin/src/main/java/org/apache/cxf/maven_plugin/XSDToJavaRunner.java @@ -71,6 +71,13 @@ public class XSDToJavaRunner { final XJCErrorListener listener; final File xsdFile; + public XSDToJavaRunner(String[] args, XJCErrorListener listener, + File file, List<String> cp) { + this.args = args; + this.listener = listener; + this.xsdFile = file; + this.cpList = cp; + } private static File getFile(String s) throws Exception { File f = new File(s); @@ -82,13 +89,6 @@ public class XSDToJavaRunner { return f; } - public XSDToJavaRunner(String[] args, XJCErrorListener listener, - File file, List<String> cp) { - this.args = args; - this.listener = listener; - this.xsdFile = file; - this.cpList = cp; - } public int run() throws Exception { List<URL> urls = new ArrayList<URL>(); for (String s : cpList) {
