Removed unnecessary call to base class' default constructor.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1209105 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-12-01 14:36:50 +00:00
parent 7455d9b7d6
commit ff7fc3df88
1 changed files with 3 additions and 4 deletions

View File

@ -42,11 +42,10 @@ public final class MathUtils {
public static final double TWO_PI = 2 * FastMath.PI;
/**
* Private Constructor
* Class contains only static methods.
*/
private MathUtils() {
super();
}
private MathUtils() {}
/**
* Returns an integer hash code representing the given double value.