mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
[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:
@@ -21,7 +21,6 @@ public class UserPassAuthenticator extends Authenticator {
|
||||
* @param pass 密码
|
||||
*/
|
||||
public UserPassAuthenticator(String user, String pass) {
|
||||
super();
|
||||
this.user = user;
|
||||
this.pass = pass;
|
||||
}
|
||||
|
@@ -39,7 +39,6 @@ public class Connector {
|
||||
* @param password 密码
|
||||
*/
|
||||
public Connector(String host, int port, String user, String password) {
|
||||
super();
|
||||
this.host = host;
|
||||
this.port = port;
|
||||
this.user = user;
|
||||
|
@@ -53,7 +53,6 @@ public class AviatorTest {
|
||||
Bar[] bars = new Bar[1];
|
||||
|
||||
public Foo(final int i, final float f, final Date date) {
|
||||
super();
|
||||
this.i = i;
|
||||
this.f = f;
|
||||
this.date = date;
|
||||
|
Reference in New Issue
Block a user