Remove explicit super() calls
This commit is contained in:
-1
@@ -39,7 +39,6 @@ class DelegatingEvaluationContext implements EvaluationContext {
|
||||
private final EvaluationContext delegate;
|
||||
|
||||
public DelegatingEvaluationContext(EvaluationContext delegate) {
|
||||
super();
|
||||
this.delegate = delegate;
|
||||
}
|
||||
|
||||
|
||||
@@ -106,7 +106,6 @@ public final class LazyCsrfTokenRepository implements CsrfTokenRepository {
|
||||
SaveOnAccessCsrfToken(CsrfTokenRepository tokenRepository,
|
||||
HttpServletRequest request, HttpServletResponse response,
|
||||
CsrfToken delegate) {
|
||||
super();
|
||||
this.tokenRepository = tokenRepository;
|
||||
this.request = request;
|
||||
this.response = response;
|
||||
|
||||
-1
@@ -133,7 +133,6 @@ public final class HpkpHeaderWriter implements HeaderWriter {
|
||||
* @param reportOnly maps to {@link #setReportOnly(boolean)}
|
||||
*/
|
||||
public HpkpHeaderWriter(long maxAgeInSeconds, boolean includeSubDomains, boolean reportOnly) {
|
||||
super();
|
||||
this.maxAgeInSeconds = maxAgeInSeconds;
|
||||
this.includeSubDomains = includeSubDomains;
|
||||
this.reportOnly = reportOnly;
|
||||
|
||||
-1
@@ -73,7 +73,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
|
||||
*/
|
||||
public HstsHeaderWriter(RequestMatcher requestMatcher, long maxAgeInSeconds,
|
||||
boolean includeSubDomains) {
|
||||
super();
|
||||
this.requestMatcher = requestMatcher;
|
||||
this.maxAgeInSeconds = maxAgeInSeconds;
|
||||
this.includeSubDomains = includeSubDomains;
|
||||
|
||||
-1
@@ -33,7 +33,6 @@ public class HttpHeaderWriterWebFilter implements WebFilter {
|
||||
private final ServerHttpHeadersWriter writer;
|
||||
|
||||
public HttpHeaderWriterWebFilter(ServerHttpHeadersWriter writer) {
|
||||
super();
|
||||
this.writer = writer;
|
||||
}
|
||||
|
||||
|
||||
@@ -28,12 +28,6 @@ import org.springframework.mock.web.MockHttpServletRequest;
|
||||
* @author Ben Alex
|
||||
*/
|
||||
public class PortResolverImplTests {
|
||||
// ~ Constructors
|
||||
// ===================================================================================================
|
||||
|
||||
public PortResolverImplTests() {
|
||||
super();
|
||||
}
|
||||
|
||||
// ~ Methods
|
||||
// ========================================================================================================
|
||||
|
||||
Reference in New Issue
Block a user