Removed spurious semicolon. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/25474e24 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/25474e24 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/25474e24
Branch: refs/heads/MATH_3_X Commit: 25474e247a472db1cc1eafa885e74bc426bee8fc Parents: 44d949a Author: Luc Maisonobe <l...@apache.org> Authored: Fri Dec 25 16:47:47 2015 +0100 Committer: Luc Maisonobe <l...@apache.org> Committed: Fri Dec 25 16:47:47 2015 +0100 ---------------------------------------------------------------------- .../analysis/integration/IterativeLegendreGaussIntegrator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/25474e24/src/main/java/org/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator.java b/src/main/java/org/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator.java index d08cf08..20700dd 100644 --- a/src/main/java/org/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator.java +++ b/src/main/java/org/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator.java @@ -142,7 +142,7 @@ public class IterativeLegendreGaussIntegrator final double ratio = FastMath.min(4, FastMath.pow(delta / limit, 0.5 / numberOfPoints)); n = FastMath.max((int) (ratio * n), n + 1); oldt = t; - incrementCount();; + incrementCount(); } }