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:
parent
7455d9b7d6
commit
ff7fc3df88
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue