This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-cli.git
commit 567fcf7cd548fa043a5493446159842b785d4696 Author: Gary Gregory <[email protected]> AuthorDate: Sun Apr 7 09:49:46 2024 -0400 Remove redundant calls to super() --- src/main/java/org/apache/commons/cli/HelpFormatter.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/apache/commons/cli/HelpFormatter.java b/src/main/java/org/apache/commons/cli/HelpFormatter.java index 2137efe..e445e1e 100644 --- a/src/main/java/org/apache/commons/cli/HelpFormatter.java +++ b/src/main/java/org/apache/commons/cli/HelpFormatter.java @@ -241,7 +241,6 @@ public class HelpFormatter { * Constructs a new instance. */ public HelpFormatter() { - super(); this.showDeprecated = false; } @@ -251,7 +250,6 @@ public class HelpFormatter { private HelpFormatter(final boolean showDeprecated) { // TODO All other instance HelpFormatter instance variables. // Make HelpFormatter immutable for 2.0 - super(); this.showDeprecated = showDeprecated; }
