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
This commit is contained in:
Sebastian Bazley 2011-02-05 19:49:07 +00:00
parent a5fcc59422
commit 2612c97685
2 changed files with 3 additions and 0 deletions

View File

@ -299,6 +299,7 @@ public abstract class AbstractIntegerDistribution extends AbstractDistribution
* only true here is meaningful. * only true here is meaningful.
* *
* @return true (always but at Integer.MIN_VALUE because of the nature of discrete support) * @return true (always but at Integer.MIN_VALUE because of the nature of discrete support)
* @since 2.2
*/ */
public boolean isSupportLowerBoundInclusive() { public boolean isSupportLowerBoundInclusive() {
return true; return true;
@ -310,6 +311,7 @@ public abstract class AbstractIntegerDistribution extends AbstractDistribution
* only true here is meaningful. * only true here is meaningful.
* *
* @return true (always but at Integer.MAX_VALUE because of the nature of discrete support) * @return true (always but at Integer.MAX_VALUE because of the nature of discrete support)
* @since 2.2
*/ */
public boolean isSupportUpperBoundInclusive() { public boolean isSupportUpperBoundInclusive() {
return true; return true;

View File

@ -24,6 +24,7 @@ import java.util.ArrayList;
* constructors of exceptions. * constructors of exceptions.
* *
* @version $Revision$ $Date$ * @version $Revision$ $Date$
* @since 2.2
*/ */
public class ArgUtils { public class ArgUtils {
/** /**