Spring cleaning: avoid unnecessary super() invocations
This commit is contained in:
@@ -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