This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
commit 00386541d916698800e32312ab3e80362e3287ab Author: aherbert <aherb...@apache.org> AuthorDate: Mon Feb 22 13:44:53 2021 +0000 Remove unused constant --- .../apache/commons/statistics/distribution/DistributionException.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DistributionException.java b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DistributionException.java index 4c56c36..42416d0 100644 --- a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DistributionException.java +++ b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DistributionException.java @@ -38,8 +38,6 @@ class DistributionException extends IllegalArgumentException { static final String NEGATIVE = "Number %s is negative"; /** Error message for "not strictly positive" condition when "x <= 0". */ static final String NOT_STRICTLY_POSITIVE = "Number %s is not greater than 0"; - /** Error message for "mismatch" condition when "x != y". */ - static final String MISMATCH = "Expected %s but was %s"; /** Serializable version identifier. */ private static final long serialVersionUID = 20180119L;