Remove explicit constructor super() calls

Closes gh-11068
This commit is contained in:
Johnny Lim
2017-11-18 02:45:09 +09:00
committed by Phillip Webb
parent a6cefc5ba0
commit 1783a072ad
29 changed files with 0 additions and 32 deletions

View File

@@ -50,7 +50,6 @@ public class City implements Serializable {
}
public City(String name, String country) {
super();
this.name = name;
this.country = country;
}