Removed unnecessary call to "super()".
This commit is contained in:
parent
540aa2e7ed
commit
8d4fd1dabb
|
@ -44,10 +44,8 @@ public final class CombinatoricsUtils {
|
|||
/** Stirling numbers of the second kind. */
|
||||
static final AtomicReference<long[][]> STIRLING_S2 = new AtomicReference<long[][]> (null);
|
||||
|
||||
/** Private constructor. */
|
||||
private CombinatoricsUtils() {
|
||||
super();
|
||||
}
|
||||
/** Private constructor (class contains only static methods). */
|
||||
private CombinatoricsUtils() {}
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue