Merge pull request #698 from olcbean/redundant_super

Remove redundant explicit super() constructor calls #694
This commit is contained in:
Ilkka Seppälä 2018-01-16 21:22:20 +02:00 committed by GitHub
commit 8960ef6111
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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() {

View File

@ -30,7 +30,6 @@ package com.iluwatar.event.aggregator;
public class KingsHand extends EventEmitter implements EventObserver {
public KingsHand() {
super();
}
public KingsHand(EventObserver obs) {

View File

@ -30,7 +30,6 @@ package com.iluwatar.event.aggregator;
public class LordBaelish extends EventEmitter {
public LordBaelish() {
super();
}
public LordBaelish(EventObserver obs) {

View File

@ -30,7 +30,6 @@ package com.iluwatar.event.aggregator;
public class LordVarys extends EventEmitter {
public LordVarys() {
super();
}
public LordVarys(EventObserver obs) {

View File

@ -30,7 +30,6 @@ package com.iluwatar.event.aggregator;
public class Scout extends EventEmitter {
public Scout() {
super();
}
public Scout(EventObserver obs) {