mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +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:
commit
8c0ad9c69c
@ -12,7 +12,6 @@ import java.security.NoSuchAlgorithmException;
|
|||||||
public class DefaultSSLFactory extends CustomProtocolsSSLFactory {
|
public class DefaultSSLFactory extends CustomProtocolsSSLFactory {
|
||||||
|
|
||||||
public DefaultSSLFactory() throws KeyManagementException, NoSuchAlgorithmException {
|
public DefaultSSLFactory() throws KeyManagementException, NoSuchAlgorithmException {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -75,7 +75,6 @@ public class ResultDto<T> implements Serializable {
|
|||||||
* @param result the result
|
* @param result the result
|
||||||
*/
|
*/
|
||||||
public ResultDto(int code, String message, T result) {
|
public ResultDto(int code, String message, T result) {
|
||||||
super();
|
|
||||||
this.code(code).message(message).result(result);
|
this.code(code).message(message).result(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +66,6 @@ public class EnvSettingInfo {
|
|||||||
private String sqlitePath;
|
private String sqlitePath;
|
||||||
|
|
||||||
public EnvSettingInfo() {
|
public EnvSettingInfo() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSqlitePath(String sqlitePath) {
|
public void setSqlitePath(String sqlitePath) {
|
||||||
|
@ -105,7 +105,6 @@ public final class Props extends Properties implements BasicTypeGetter<String>,
|
|||||||
* 构造
|
* 构造
|
||||||
*/
|
*/
|
||||||
public Props() {
|
public Props() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -63,7 +63,6 @@ public class Profile implements Serializable {
|
|||||||
* @param useVar 是否使用变量
|
* @param useVar 是否使用变量
|
||||||
*/
|
*/
|
||||||
public Profile(String profile, Charset charset, boolean useVar) {
|
public Profile(String profile, Charset charset, boolean useVar) {
|
||||||
super();
|
|
||||||
this.profile = profile;
|
this.profile = profile;
|
||||||
this.charset = charset;
|
this.charset = charset;
|
||||||
this.useVar = useVar;
|
this.useVar = useVar;
|
||||||
|
Loading…
Reference in New Issue
Block a user