Formatting.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1329197 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-04-23 12:10:14 +00:00
parent 2f6a4f8456
commit 460839bd61

View File

@ -42,7 +42,7 @@ public class UnivariatePointValuePair implements Serializable {
* @param value Value of an objective function at the point
*/
public UnivariatePointValuePair(final double point,
final double value) {
final double value) {
this.point = point;
this.value = value;
}