Removed deprecated instance field.
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/6ea0eb2d Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/6ea0eb2d Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/6ea0eb2d Branch: refs/heads/master Commit: 6ea0eb2d481590f7c4a3d48fd562b5b15c2f3272 Parents: 10e3811 Author: Gilles <[email protected]> Authored: Wed May 10 14:44:57 2017 +0200 Committer: Gilles <[email protected]> Committed: Wed May 10 14:44:57 2017 +0200 ---------------------------------------------------------------------- .../commons/math4/stat/inference/KolmogorovSmirnovTest.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/6ea0eb2d/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java b/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java index 71bd73b..fa7ec98 100644 --- a/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java +++ b/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java @@ -127,10 +127,6 @@ public class KolmogorovSmirnovTest { /** Convergence criterion for the sums in #pelzGood(double, double, int)} */ protected static final double PG_SUM_RELATIVE_ERROR = 1.0e-10; - /** No longer used. */ - @Deprecated - protected static final int SMALL_SAMPLE_PRODUCT = 200; - /** * When product of sample sizes exceeds this value, 2-sample K-S test uses asymptotic * distribution to compute the p-value.
