Fix a missing "throws Exception" for configure(AuthenticationManagerBuilder auth)

The actual method signature look this this:
```java
protected void configure(AuthenticationManagerBuilder auth) throws Exception
```
 This PR aims at aligning the javadoc for this annotation with the actual method signature.
This commit is contained in:
Eric Hudon 2018-07-18 10:19:21 -04:00 committed by Josh Cummings
parent f48404a6a0
commit 79bbd6a39c
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ import org.springframework.security.config.annotation.web.WebSecurityConfigurer;
* }
*
* @Override
* protected void configure(AuthenticationManagerBuilder auth) {
* protected void configure(AuthenticationManagerBuilder auth) throws Exception {
* auth
* // enable in memory based authentication with a user named "user" and "admin"
* .inMemoryAuthentication().withUser("user").password("password").roles("USER")