You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/03/05 12:06:17 UTC

[lang] Checkstyle for long literals (closes #249)

Repository: commons-lang
Updated Branches:
  refs/heads/master 6597c1965 -> e5ed4ffe5


Checkstyle for long literals (closes #249)

PR #248 corrected all the long literals to use the upper case L
notation.
This patch finishes the job as per the discussion there, and adds a
checktysle check to ensure no code that introduces long literals with
lowercase l are introduced.


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

Branch: refs/heads/master
Commit: e5ed4ffe5df9bd5fe796e95acf0b35f4c858e1a2
Parents: 6597c19
Author: Allon Mureinik <am...@redhat.com>
Authored: Sat Mar 4 18:38:19 2017 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Mar 5 13:05:47 2017 +0100

----------------------------------------------------------------------
 checkstyle.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/e5ed4ffe/checkstyle.xml
----------------------------------------------------------------------
diff --git a/checkstyle.xml b/checkstyle.xml
index 79943fb..9b6625e 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -42,5 +42,6 @@ limitations under the License.
     <module name="JavadocMethod">
       <property name="allowUndeclaredRTE" value="true"/>
     </module>
+    <module name="UpperEll">
  </module>
 </module>