Remove explicit constructor super() calls

Closes gh-11068
This commit is contained in:
Johnny Lim
2017-11-18 02:45:09 +09:00
committed by Phillip Webb
parent a6cefc5ba0
commit 1783a072ad
29 changed files with 0 additions and 32 deletions

View File

@@ -37,7 +37,6 @@ public class WarLauncher extends ExecutableArchiveLauncher {
private static final String WEB_INF_LIB_PROVIDED = WEB_INF + "lib-provided/";
public WarLauncher() {
super();
}
protected WarLauncher(Archive archive) {

View File

@@ -55,7 +55,6 @@ final class CentralDirectoryFileHeader implements FileHeader {
CentralDirectoryFileHeader(byte[] header, int headerOffset, AsciiBytes name,
byte[] extra, AsciiBytes comment, long localHeaderOffset) {
super();
this.header = header;
this.headerOffset = headerOffset;
this.name = name;