BAEL-315 reformatting some code.

This commit is contained in:
Tim Schimandle 2016-10-03 23:15:54 -06:00
parent 4029a3f547
commit 95b967858e
1 changed files with 4 additions and 3 deletions

View File

@ -31,9 +31,10 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest().authenticated()
.anyRequest().authenticated()
.and()
.httpBasic().and()
.csrf().disable();
.httpBasic()
.and()
.csrf().disable();
}
}