Formatting.

This commit is contained in:
Gilles 2018-08-28 20:12:33 +02:00
parent c89916ca4c
commit b3fb9a1f6a
1 changed files with 1 additions and 2 deletions

View File

@ -328,8 +328,7 @@ public class LeastSquaresFactory {
final double[] p = point.toArray();
// Evaluate.
return new Pair<>(computeValue(p),
computeJacobian(p));
return new Pair<>(computeValue(p), computeJacobian(p));
}
/** {@inheritDoc} */