Remove explicit super() calls
This commit is contained in:
parent
57353d18e5
commit
921157cdcd
|
@ -76,10 +76,6 @@ public final class OAuth2LoginConfigurer<B extends HttpSecurityBuilder<B>> exten
|
|||
private final UserInfoEndpointConfig userInfoEndpointConfig = new UserInfoEndpointConfig();
|
||||
private String loginPage;
|
||||
|
||||
public OAuth2LoginConfigurer() {
|
||||
super();
|
||||
}
|
||||
|
||||
public OAuth2LoginConfigurer<B> clientRegistrationRepository(ClientRegistrationRepository clientRegistrationRepository) {
|
||||
Assert.notNull(clientRegistrationRepository, "clientRegistrationRepository cannot be null");
|
||||
this.getBuilder().setSharedObject(ClientRegistrationRepository.class, clientRegistrationRepository);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,12 +28,6 @@ import org.springframework.security.core.Authentication;
|
|||
* @author Ben Alex
|
||||
*/
|
||||
public class SecurityContextImplTests {
|
||||
// ~ Constructors
|
||||
// ===================================================================================================
|
||||
|
||||
public SecurityContextImplTests() {
|
||||
super();
|
||||
}
|
||||
|
||||
// ~ Methods
|
||||
// ========================================================================================================
|
||||
|
|
|
@ -36,7 +36,6 @@ public class ThymeleafConfig implements WebFluxConfigurer {
|
|||
private ApplicationContext applicationContext;
|
||||
|
||||
public ThymeleafConfig(final ApplicationContext applicationContext) {
|
||||
super();
|
||||
this.applicationContext = applicationContext;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@ public class Directory extends AbstractElement {
|
|||
public static final Directory ROOT_DIRECTORY = new Directory();
|
||||
|
||||
private Directory() {
|
||||
super();
|
||||
}
|
||||
|
||||
public Directory(String name, Directory parent) {
|
||||
|
|
|
@ -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
|
||||
// ========================================================================================================
|
||||
|
|
Loading…
Reference in New Issue