Made field "private" (unit test).
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/e7b4025e Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/e7b4025e Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/e7b4025e Branch: refs/heads/master Commit: e7b4025ee0b6152f9bbf7a72a317f977402a27f7 Parents: 59279e3 Author: Gilles <[email protected]> Authored: Wed May 10 15:27:06 2017 +0200 Committer: Gilles <[email protected]> Committed: Wed May 10 15:27:06 2017 +0200 ---------------------------------------------------------------------- .../commons/math4/stat/inference/KolmogorovSmirnovTestTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/e7b4025e/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java b/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java index ba87205..b9fc80c 100644 --- a/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java +++ b/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java @@ -38,8 +38,7 @@ import org.junit.Test; * @since 3.3 */ public class KolmogorovSmirnovTestTest { - - protected static final double TOLERANCE = 10e-10; + private static final double TOLERANCE = 10e-10; private static final int MONTE_CARLO_ITERATIONS = 1000000; private static final int LARGE_SAMPLE_PRODUCT = 10000;
