Remove explicit super() calls
This commit is contained in:
@@ -42,7 +42,6 @@ public class SecurityConfigurerAdapterTests {
|
||||
private final int order;
|
||||
|
||||
public OrderedObjectPostProcessor(int order) {
|
||||
super();
|
||||
this.order = order;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user