Remove redundant explicit super() constructor calls #694

This commit is contained in:
olcbean
2018-01-15 19:33:55 +01:00
parent e9021329e1
commit a82000650d
8 changed files with 0 additions and 8 deletions

View File

@ -56,7 +56,6 @@ public class Author {
}
protected Author() {
super();
}
public long getId() {

View File

@ -58,7 +58,6 @@ public class Book {
}
protected Book() {
super();
}
public long getId() {

View File

@ -51,7 +51,6 @@ public class Author {
}
public Author() {
super();
}
public String getName() {

View File

@ -47,7 +47,6 @@ public class Book {
}
public Book() {
super();
}
public String getTitle() {