Remove explicit super() calls
This commit is contained in:
-4
@@ -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);
|
||||
|
||||
-1
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user