Skip to content

Commit 567fcf7

Browse files
committed
Remove redundant calls to super()
1 parent f78bf22 commit 567fcf7

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/main/java/org/apache/commons/cli/HelpFormatter.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ public static Builder builder() {
241241
* Constructs a new instance.
242242
*/
243243
public HelpFormatter() {
244-
super();
245244
this.showDeprecated = false;
246245
}
247246

@@ -251,7 +250,6 @@ public HelpFormatter() {
251250
private HelpFormatter(final boolean showDeprecated) {
252251
// TODO All other instance HelpFormatter instance variables.
253252
// Make HelpFormatter immutable for 2.0
254-
super();
255253
this.showDeprecated = showDeprecated;
256254
}
257255

0 commit comments

Comments
 (0)