Repository: cxf Updated Branches: refs/heads/2.6.x-fixes 6af5dd43d -> faeb3e2e9
fix PMD error for 2.6.x api Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/faeb3e2e Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/faeb3e2e Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/faeb3e2e Branch: refs/heads/2.6.x-fixes Commit: faeb3e2e94d1cf84d7cc549e838fc15fe38dbe5d Parents: 6af5dd4 Author: Akitoshi Yoshida <[email protected]> Authored: Fri Jun 27 15:36:24 2014 +0200 Committer: Akitoshi Yoshida <[email protected]> Committed: Fri Jun 27 15:36:24 2014 +0200 ---------------------------------------------------------------------- api/src/main/java/org/apache/cxf/common/util/Compiler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/faeb3e2e/api/src/main/java/org/apache/cxf/common/util/Compiler.java ---------------------------------------------------------------------- diff --git a/api/src/main/java/org/apache/cxf/common/util/Compiler.java b/api/src/main/java/org/apache/cxf/common/util/Compiler.java index 2fa4b21..790ab9c 100644 --- a/api/src/main/java/org/apache/cxf/common/util/Compiler.java +++ b/api/src/main/java/org/apache/cxf/common/util/Compiler.java @@ -34,7 +34,7 @@ import org.apache.cxf.helpers.FileUtils; public class Compiler { private long maxMemory = Runtime.getRuntime().maxMemory(); - private boolean verbose; +// private boolean verbose; private String target; private String outputDir; private String classPath; @@ -49,7 +49,7 @@ public class Compiler { maxMemory = l; } public void setVerbose(boolean b) { - verbose = b; +// verbose = b; } public void setTarget(String s) { target = s;
