Removed spurious semicolon.

This commit is contained in:
Luc Maisonobe 2015-12-25 16:47:47 +01:00
parent 44d949a1c3
commit 25474e247a
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}