You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2020/04/07 17:23:42 UTC

[commons-math] 04/06: Formatting nit.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-math.git

commit 75d19f307733a42a99be411fc28f1a926c358ddf
Author: Gilles Sadowski <gi...@gmail.com>
AuthorDate: Mon Apr 6 13:37:04 2020 +0200

    Formatting nit.
---
 .../apache/commons/math4/analysis/interpolation/SplineInterpolator.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/math4/analysis/interpolation/SplineInterpolator.java b/src/main/java/org/apache/commons/math4/analysis/interpolation/SplineInterpolator.java
index 22f4586..8da99b8 100644
--- a/src/main/java/org/apache/commons/math4/analysis/interpolation/SplineInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/analysis/interpolation/SplineInterpolator.java
@@ -106,7 +106,7 @@ public class SplineInterpolator implements UnivariateInterpolator {
         final double[] c = new double[n + 1];
         final double[] d = new double[n];
 
-        for (int j = n -1; j >=0; j--) {
+        for (int j = n - 1; j >= 0; j--) {
             final double cJp1 = c[j + 1];
             final double cJ = z[j] - mu[j] * cJp1;
             final double hJ = h[j];