Repository: commons-lang
Updated Branches:
  refs/heads/master d962a2b31 -> 9c5b6cdc7


Remove unused private fields


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

Branch: refs/heads/master
Commit: 3421e6adb4a3a4fadae79feb0f180e78e2698374
Parents: d962a2b
Author: Benedikt Ritter <brit...@apache.org>
Authored: Mon Sep 19 13:46:41 2016 +0200
Committer: Benedikt Ritter <brit...@apache.org>
Committed: Mon Sep 19 13:46:41 2016 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/Validate.java | 10 ----------
 1 file changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/3421e6ad/src/main/java/org/apache/commons/lang3/Validate.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/Validate.java 
b/src/main/java/org/apache/commons/lang3/Validate.java
index da20da4..508845a 100644
--- a/src/main/java/org/apache/commons/lang3/Validate.java
+++ b/src/main/java/org/apache/commons/lang3/Validate.java
@@ -49,16 +49,6 @@ public class Validate {
         "The validated value is not a number";
     private static final String DEFAULT_FINITE_EX_MESSAGE =
         "The value is invalid: %f";
-    private static final String DEFAULT_GREATER_EX_MESSAGE =
-        "The value %s is not greater than %s";
-    private static final String DEFAULT_GREATER_OR_EQUAL_EX_MESSAGE =
-        "The value %s is not greater than or equal to %s";
-    private static final String DEFAULT_SMALLER_EX_MESSAGE =
-        "The value %s is not smaller than %s";
-    private static final String DEFAULT_SMALLER_OR_EQUAL_EX_MESSAGE =
-        "The value %s is not smaller than or equal to %s";
-    private static final String DEFAULT_DIFFERENT_EX_MESSAGE =
-        "The value %s is invalid";
     private static final String DEFAULT_EXCLUSIVE_BETWEEN_EX_MESSAGE =
         "The value %s is not in the specified exclusive range of %s to %s";
     private static final String DEFAULT_INCLUSIVE_BETWEEN_EX_MESSAGE =

Reply via email to