mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Removed unnecessary calls to default super constructors.
This commit is contained in:
@@ -11,7 +11,5 @@ public class TransportConfig extends Hashtable<String, String> {
|
||||
super(c);
|
||||
}
|
||||
|
||||
public TransportConfig() {
|
||||
super();
|
||||
}
|
||||
public TransportConfig() {}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,5 @@ public class TransportProperties extends Hashtable<String, String> {
|
||||
super(p);
|
||||
}
|
||||
|
||||
public TransportProperties() {
|
||||
super();
|
||||
}
|
||||
public TransportProperties() {}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user