1
0
mirror of synced 2026-08-05 09:47:05 +00:00

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
@@ -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;
@@ -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;
@@ -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;
@@ -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
// ========================================================================================================