Spring cleaning: avoid unnecessary super() invocations
This commit is contained in:
@@ -60,7 +60,6 @@ public class DefaultTransactionAttribute extends DefaultTransactionDefinition im
|
||||
* @see #setName
|
||||
*/
|
||||
public DefaultTransactionAttribute() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -60,7 +60,6 @@ public class RuleBasedTransactionAttribute extends DefaultTransactionAttribute i
|
||||
* @see #setRollbackRules
|
||||
*/
|
||||
public RuleBasedTransactionAttribute() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -96,7 +96,6 @@ public class GenericWebApplicationContext extends GenericApplicationContext
|
||||
* @see #refresh
|
||||
*/
|
||||
public GenericWebApplicationContext() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -368,7 +368,6 @@ public class DispatcherServlet extends FrameworkServlet {
|
||||
* @see #DispatcherServlet(WebApplicationContext)
|
||||
*/
|
||||
public DispatcherServlet() {
|
||||
super();
|
||||
setDispatchOptionsRequest(true);
|
||||
}
|
||||
|
||||
|
||||
@@ -54,7 +54,6 @@ public class SseEmitter extends ResponseBodyEmitter {
|
||||
* Create a new SseEmitter instance.
|
||||
*/
|
||||
public SseEmitter() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -245,7 +245,6 @@ class RequestPartIntegrationTests {
|
||||
private String name;
|
||||
|
||||
public TestData() {
|
||||
super();
|
||||
}
|
||||
|
||||
public TestData(String name) {
|
||||
|
||||
Reference in New Issue
Block a user