Removed deprecations of test(.) methods.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1588601 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
57247cd3dd
commit
4b724bdc2e
|
@ -151,9 +151,7 @@ public abstract class AbstractUnivariateStatistic
|
||||||
* @param length the number of elements to include
|
* @param length the number of elements to include
|
||||||
* @return true if the parameters are valid and designate a subarray of positive length
|
* @return true if the parameters are valid and designate a subarray of positive length
|
||||||
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
||||||
* @deprecated 3.3 Use {@link MathArrays#verifyValues(double[], int, int)} instead
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
|
||||||
protected boolean test(
|
protected boolean test(
|
||||||
final double[] values,
|
final double[] values,
|
||||||
final int begin,
|
final int begin,
|
||||||
|
@ -181,9 +179,7 @@ public abstract class AbstractUnivariateStatistic
|
||||||
* @return true if the parameters are valid
|
* @return true if the parameters are valid
|
||||||
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @deprecated 3.3 Use {@link MathArrays#verifyValues(double[], int, int, boolean)} instead
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
|
||||||
protected boolean test(final double[] values, final int begin,
|
protected boolean test(final double[] values, final int begin,
|
||||||
final int length, final boolean allowEmpty) throws MathIllegalArgumentException {
|
final int length, final boolean allowEmpty) throws MathIllegalArgumentException {
|
||||||
return MathArrays.verifyValues(values, begin, length, allowEmpty);
|
return MathArrays.verifyValues(values, begin, length, allowEmpty);
|
||||||
|
@ -217,9 +213,7 @@ public abstract class AbstractUnivariateStatistic
|
||||||
* @return true if the parameters are valid and designate a subarray of positive length
|
* @return true if the parameters are valid and designate a subarray of positive length
|
||||||
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @deprecated 3.3 Use {@link MathArrays#verifyValues(double[], double[], int, int)} instead
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
|
||||||
protected boolean test(
|
protected boolean test(
|
||||||
final double[] values,
|
final double[] values,
|
||||||
final double[] weights,
|
final double[] weights,
|
||||||
|
@ -260,9 +254,7 @@ public abstract class AbstractUnivariateStatistic
|
||||||
* the weights array contains NaN, infinite or negative elements, or there
|
* the weights array contains NaN, infinite or negative elements, or there
|
||||||
* are no positive weights.
|
* are no positive weights.
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @deprecated 3.3 Use {@link MathArrays#verifyValues(double[], double[], int, int, boolean)} instead
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
|
||||||
protected boolean test(final double[] values, final double[] weights,
|
protected boolean test(final double[] values, final double[] weights,
|
||||||
final int begin, final int length, final boolean allowEmpty) throws MathIllegalArgumentException {
|
final int begin, final int length, final boolean allowEmpty) throws MathIllegalArgumentException {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue