Skip to content

Commit

Permalink
Remove redundant calls to super().
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 20, 2020
1 parent e70b8ca commit b7c2bb6
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public class DefaultFileItemFactory extends DiskFileItemFactory {
*/
@Deprecated
public DefaultFileItemFactory() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public class DiskFileUpload
*/
@Deprecated
public DiskFileUpload() {
super();
this.fileItemFactory = new DefaultFileItemFactory();
}

Expand All @@ -75,7 +74,6 @@ public DiskFileUpload() {
*/
@Deprecated
public DiskFileUpload(DefaultFileItemFactory fileItemFactory) {
super();
this.fileItemFactory = fileItemFactory;
}

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/apache/commons/fileupload2/FileUpload.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public class FileUpload
* @see #FileUpload(FileItemFactory)
*/
public FileUpload() {
super();
}

/**
Expand All @@ -63,7 +62,6 @@ public FileUpload() {
* @param fileItemFactory The factory to use for creating file items.
*/
public FileUpload(FileItemFactory fileItemFactory) {
super();
this.fileItemFactory = fileItemFactory;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,6 @@ public static class MalformedStreamException extends IOException {
* detail message.
*/
public MalformedStreamException() {
super();
}

/**
Expand Down Expand Up @@ -793,7 +792,6 @@ public static class IllegalBoundaryException extends IOException {
* detail message.
*/
public IllegalBoundaryException() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public class ParameterParser {
* Default ParameterParser constructor.
*/
public ParameterParser() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public class InvalidContentTypeException
* detail message.
*/
public InvalidContentTypeException() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class UnknownSizeException
* detail message.
*/
public UnknownSizeException() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public static final boolean isMultipartContent(
* @see FileUpload#FileUpload(FileItemFactory)
*/
public JakSrvltFileUpload() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public static final boolean isMultipartContent(ActionRequest request) {
* @see FileUpload#FileUpload(FileItemFactory)
*/
public PortletFileUpload() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public static final boolean isMultipartContent(
* @see FileUpload#FileUpload(FileItemFactory)
*/
public ServletFileUpload() {
super();
}

/**
Expand Down

0 comments on commit b7c2bb6

Please sign in to comment.