mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
Merge pull request #1424 from cal101/jdt-RemoveUnnecessarySuperCallCleanUp-2
[cleanup] erefactor/EclipseJdt - Remove redundant super() call in con…
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
@@ -66,7 +66,6 @@ public class EnvSettingInfo {
|
||||
private String sqlitePath;
|
||||
|
||||
public EnvSettingInfo() {
|
||||
super();
|
||||
}
|
||||
|
||||
public void setSqlitePath(String sqlitePath) {
|
||||
|
Reference in New Issue
Block a user