Author: sebb
Date: Sat Feb 5 19:49:07 2011
New Revision: 1067494
URL: http://svn.apache.org/viewvc?rev=1067494&view=rev
Log:
Add some @since 2.2 markers
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java?rev=1067494&r1=1067493&r2=1067494&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
Sat Feb 5 19:49:07 2011
@@ -299,6 +299,7 @@ public abstract class AbstractIntegerDis
* 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 AbstractIntegerDis
* 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;
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java?rev=1067494&r1=1067493&r2=1067494&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/exception/util/ArgUtils.java
Sat Feb 5 19:49:07 2011
@@ -24,6 +24,7 @@ import java.util.ArrayList;
* constructors of exceptions.
*
* @version $Revision$ $Date$
+ * @since 2.2
*/
public class ArgUtils {
/**