Removed unnecessary calls to default super constructors.

This commit is contained in:
akwizgran
2013-05-15 12:35:00 +01:00
parent 630cfde81e
commit 9e35e96ce4
17 changed files with 3 additions and 23 deletions

View File

@@ -11,7 +11,5 @@ public class TransportConfig extends Hashtable<String, String> {
super(c);
}
public TransportConfig() {
super();
}
public TransportConfig() {}
}

View File

@@ -11,7 +11,5 @@ public class TransportProperties extends Hashtable<String, String> {
super(p);
}
public TransportProperties() {
super();
}
public TransportProperties() {}
}

View File

@@ -4,9 +4,7 @@ public class DbException extends Exception {
private static final long serialVersionUID = 3706581789209939441L;
public DbException() {
super();
}
public DbException() {}
public DbException(Throwable t) {
super(t);