Repository: commons-math Updated Branches: refs/heads/master 540aa2e7e -> 8d4fd1dab
Removed unnecessary call to "super()". Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/8d4fd1da Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/8d4fd1da Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/8d4fd1da Branch: refs/heads/master Commit: 8d4fd1dabbae4d7ebc2b273af9275ef8bd0e1ce1 Parents: 540aa2e Author: Gilles <er...@apache.org> Authored: Tue Dec 16 13:25:10 2014 +0100 Committer: Gilles <er...@apache.org> Committed: Tue Dec 16 13:25:10 2014 +0100 ---------------------------------------------------------------------- .../java/org/apache/commons/math3/util/CombinatoricsUtils.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/8d4fd1da/src/main/java/org/apache/commons/math3/util/CombinatoricsUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/util/CombinatoricsUtils.java b/src/main/java/org/apache/commons/math3/util/CombinatoricsUtils.java index a93cf6b..e43d549 100644 --- a/src/main/java/org/apache/commons/math3/util/CombinatoricsUtils.java +++ b/src/main/java/org/apache/commons/math3/util/CombinatoricsUtils.java @@ -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() {} /**