[cleanup] erefactor/EclipseJdt - Remove redundant super() call in constructor

EclipseJdt cleanup 'RemoveUnnecessarySuperCall' applied by erefactor.

For EclipseJdt see https://www.eclipse.org/eclipse/news/4.18/jdt.php
For erefactor see https://github.com/cal101/erefactor
This commit is contained in:
cal101
2021-02-14 11:45:07 +00:00
parent 4405d7b8f9
commit efe95c5f7b
5 changed files with 0 additions and 5 deletions

View File

@@ -75,7 +75,6 @@ public class ResultDto<T> implements Serializable {
* @param result the result
*/
public ResultDto(int code, String message, T result) {
super();
this.code(code).message(message).result(result);
}

View File

@@ -66,7 +66,6 @@ public class EnvSettingInfo {
private String sqlitePath;
public EnvSettingInfo() {
super();
}
public void setSqlitePath(String sqlitePath) {