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/6568bb25 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/6568bb25 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/6568bb25 Branch: refs/heads/master Commit: 6568bb254372ccb99155761fcfd4288f498268f9 Parents: 6ea0eb2 Author: Gilles <[email protected]> Authored: Wed May 10 14:48:31 2017 +0200 Committer: Gilles <[email protected]> Committed: Wed May 10 14:48:31 2017 +0200 ---------------------------------------------------------------------- .../commons/math4/stat/inference/KolmogorovSmirnovTest.java | 5 ----- 1 file changed, 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/6568bb25/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 fa7ec98..dad7535 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 @@ -133,11 +133,6 @@ public class KolmogorovSmirnovTest { */ protected static final int LARGE_SAMPLE_PRODUCT = 10000; - /** Default number of iterations used by {@link #monteCarloP(double,int,int,boolean,int,UniformRandomProvider)}. - * Deprecated as of version 3.6, as this method is no longer needed. */ - @Deprecated - protected static final int MONTE_CARLO_ITERATIONS = 1000000; - /** * Computes the <i>p-value</i>, or <i>observed significance level</i>, of a one-sample <a * href="http://en.wikipedia.org/wiki/Kolmogorov-Smirnov_test"> Kolmogorov-Smirnov test</a>
