[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:
cal101
2021-02-27 09:43:12 +00:00
parent b285db71cd
commit 569e65f9dc
20 changed files with 0 additions and 39 deletions

View File

@@ -91,7 +91,6 @@ public class Entity extends Dict {
// --------------------------------------------------------------- Constructor start
public Entity() {
super();
}
/**
@@ -101,7 +100,6 @@ public class Entity extends Dict {
*/
public Entity(String tableName) {
super();
this.tableName = tableName;
}