Skip to content

Commit cb89537

Browse files
author
Gary Gregory
committed
Remove redundant calls to super().
1 parent ade3895 commit cb89537

23 files changed

Lines changed: 2 additions & 27 deletions

src/main/java/org/apache/commons/io/EndianUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public class EndianUtils {
4343
* Instances should NOT be constructed in standard programming.
4444
*/
4545
public EndianUtils() {
46-
super();
4746
}
4847

4948
// ========================================== Swapping routines

src/main/java/org/apache/commons/io/FileExistsException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public class FileExistsException extends IOException {
3535
* Default Constructor.
3636
*/
3737
public FileExistsException() {
38-
super();
3938
}
4039

4140
/**

src/main/java/org/apache/commons/io/FileSystemUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ public class FileSystemUtils {
113113
* Instances should NOT be constructed in standard programming.
114114
*/
115115
public FileSystemUtils() {
116-
super();
117116
}
118117

119118
//-----------------------------------------------------------------------

src/main/java/org/apache/commons/io/FileUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3398,6 +3398,6 @@ public static void writeStringToFile(final File file, final String data, final S
33983398
* Instances should NOT be constructed in standard programming.
33993399
*/
34003400
public FileUtils() { //NOSONAR
3401-
super();
3401+
34023402
}
34033403
}

src/main/java/org/apache/commons/io/FilenameUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ public class FilenameUtils {
135135
* Instances should NOT be constructed in standard programming.
136136
*/
137137
public FilenameUtils() {
138-
super();
139138
}
140139

141140
//-----------------------------------------------------------------------

src/main/java/org/apache/commons/io/HexDump.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public class HexDump {
3535
* Instances should NOT be constructed in standard programming.
3636
*/
3737
public HexDump() {
38-
super();
3938
}
4039

4140
/**

src/main/java/org/apache/commons/io/IOUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3363,7 +3363,7 @@ public static Writer writer(final Appendable appendable) {
33633363
* Instances should NOT be constructed in standard programming.
33643364
*/
33653365
public IOUtils() { //NOSONAR
3366-
super();
3366+
33673367
}
33683368

33693369
}

src/main/java/org/apache/commons/io/StreamIterator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public static <T> Iterator<T> iterator(final Stream<T> stream) {
5050
}
5151

5252
private StreamIterator(final Stream<E> stream) {
53-
super();
5453
this.stream = Objects.requireNonNull(stream, "stream");
5554
this.iterator = stream.iterator();
5655
}

src/main/java/org/apache/commons/io/file/Counters.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ private static class AbstractPathCounters implements PathCounters {
4545
*/
4646
protected AbstractPathCounters(final Counter byteCounter, final Counter directoryCounter,
4747
final Counter fileCounter) {
48-
super();
4948
this.byteCounter = byteCounter;
5049
this.directoryCounter = directoryCounter;
5150
this.fileCounter = fileCounter;

src/main/java/org/apache/commons/io/file/CountingPathVisitor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ public CountingPathVisitor(final PathCounters pathCounter) {
7676
* @since 2.9.0
7777
*/
7878
public CountingPathVisitor(final PathCounters pathCounter, final PathFilter fileFilter, final PathFilter dirFilter) {
79-
super();
8079
this.pathCounters = Objects.requireNonNull(pathCounter, "pathCounter");
8180
this.fileFilter = Objects.requireNonNull(fileFilter, "fileFilter");
8281
this.dirFilter = Objects.requireNonNull(dirFilter, "dirFilter");

0 commit comments

Comments
 (0)