From 2612c97685a2b197fc9fcebaf6ffb7f4f75e36c4 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sat, 5 Feb 2011 19:49:07 +0000 Subject: [PATCH] Add some @since 2.2 markers git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1067494 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/distribution/AbstractIntegerDistribution.java | 2 ++ .../java/org/apache/commons/math/exception/util/ArgUtils.java | 1 + 2 files changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java b/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java index bfe6abf32..59254add5 100644 --- a/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java +++ b/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java @@ -299,6 +299,7 @@ public abstract class AbstractIntegerDistribution extends AbstractDistribution * only true here is meaningful. * * @return true (always but at Integer.MIN_VALUE because of the nature of discrete support) + * @since 2.2 */ public boolean isSupportLowerBoundInclusive() { return true; @@ -310,6 +311,7 @@ public abstract class AbstractIntegerDistribution extends AbstractDistribution * only true here is meaningful. * * @return true (always but at Integer.MAX_VALUE because of the nature of discrete support) + * @since 2.2 */ public boolean isSupportUpperBoundInclusive() { return true; diff --git a/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java b/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java index dc0719c4a..d91134cf7 100644 --- a/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java +++ b/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java @@ -24,6 +24,7 @@ import java.util.ArrayList; * constructors of exceptions. * * @version $Revision$ $Date$ + * @since 2.2 */ public class ArgUtils { /**