You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2018/02/11 20:24:35 UTC

ant git commit: move checkstyle rule back where it belongs

Repository: ant
Updated Branches:
  refs/heads/master 7845e9f0a -> c8b7af521


move checkstyle rule back where it belongs


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/c8b7af52
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/c8b7af52
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/c8b7af52

Branch: refs/heads/master
Commit: c8b7af521e66d8ef44a2f399286ce851dc39dd68
Parents: 7845e9f
Author: Stefan Bodewig <bo...@apache.org>
Authored: Sun Feb 11 21:06:37 2018 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Sun Feb 11 21:06:37 2018 +0100

----------------------------------------------------------------------
 .../tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/c8b7af52/src/main/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java
----------------------------------------------------------------------
diff --git a/src/main/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java b/src/main/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java
index e6efc2c..a9ba55f 100644
--- a/src/main/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java
+++ b/src/main/org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.java
@@ -64,6 +64,7 @@ public abstract class DefaultCompilerAdapter
     //must keep for subclass BC, though unused:
     // CheckStyle:ConstantNameCheck OFF - bc
     protected static final String lSep = StringUtils.LINE_SEP;
+    // CheckStyle:ConstantNameCheck ON
 
     protected Path src;
     protected File destDir;
@@ -92,7 +93,6 @@ public abstract class DefaultCompilerAdapter
     protected File[] compileList;
     protected Javac attributes;
 
-    // CheckStyle:ConstantNameCheck ON
     // CheckStyle:VisibilityModifier ON
 
     /**