Removed unnecessary call to "super()".

This commit is contained in:
Gilles 2014-12-16 13:25:10 +01:00
parent 540aa2e7ed
commit 8d4fd1dabb
1 changed files with 2 additions and 4 deletions

View File

@ -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() {}
/**