This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-math.git
The following commit(s) were added to refs/heads/master by this push: new 3ddfbd6cf Remove extra addition character 3ddfbd6cf is described below commit 3ddfbd6cf7ebbaf54b633e61a778412bd0df2c2e Author: Alex Herbert <aherb...@apache.org> AuthorDate: Sat Oct 22 07:57:36 2022 +0100 Remove extra addition character --- .../commons/math4/legacy/stat/inference/KolmogorovSmirnovTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/inference/KolmogorovSmirnovTest.java b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/inference/KolmogorovSmirnovTest.java index 21b98100b..35122e084 100644 --- a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/inference/KolmogorovSmirnovTest.java +++ b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/inference/KolmogorovSmirnovTest.java @@ -669,7 +669,7 @@ public class KolmogorovSmirnovTest { throw new TooManyIterationsException(MAXIMUM_PARTIAL_SUM_COUNT); } return ret + (sqrtHalfPi / (sqrtN * n)) * (sum / (3240 * z6 * z4) + - + sum2 / (108 * z6)); + sum2 / (108 * z6)); } /**