Remove explicit super() calls

This commit is contained in:
Johnny Lim
2017-11-18 10:15:19 +09:00
committed by Rob Winch
parent 57353d18e5
commit 921157cdcd
12 changed files with 1 additions and 26 deletions

View File

@@ -42,7 +42,6 @@ public class SecurityConfigurerAdapterTests {
private final int order;
public OrderedObjectPostProcessor(int order) {
super();
this.order = order;
}

View File

@@ -26,7 +26,6 @@ public class Contact {
* @param name
*/
public Contact(String name) {
super();
this.name = name;
}
@@ -36,4 +35,4 @@ public class Contact {
public String getName() {
return name;
}
}
}