Remove (non-Javadoc) comments

Search and replace using '(?s)/\*\s*\* \(non-Javadoc\).*?\*/' to remove
all "(non-Javadoc)" comments. These comments used to be added
automatically by Eclipse, but are not really necessary.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-08-05 19:55:36 -07:00
committed by Rob Winch
parent a2f2e9ac8d
commit 3e700e7571
42 changed files with 1 additions and 425 deletions

View File

@@ -33,13 +33,6 @@ public class CustomConfigurer extends SecurityConfigurerAdapter<DefaultSecurityF
private String loginPage = "/login";
/*
* (non-Javadoc)
*
* @see
* org.springframework.security.config.annotation.SecurityConfigurerAdapter#init(org.
* springframework.security.config.annotation.SecurityBuilder)
*/
@SuppressWarnings("unchecked")
@Override
public void init(HttpSecurity http) throws Exception {

View File

@@ -414,13 +414,6 @@ public class GlobalMethodSecurityBeanDefinitionParserTests {
return this.authenticationManager.authenticate(authentication);
}
/*
* (non-Javadoc)
*
* @see
* org.springframework.context.ApplicationContextAware#setApplicationContext(org
* .springframework.context.ApplicationContext)
*/
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.authenticationManager = applicationContext.getBean(this.beanName, AuthenticationManager.class);