BAEL-315 reformatting some code.

This commit is contained in:
Tim Schimandle 2016-10-03 23:15:54 -06:00
parent 846006cb6a
commit 61b51e1cf9

View File

@ -33,7 +33,8 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.authorizeRequests() .authorizeRequests()
.anyRequest().authenticated() .anyRequest().authenticated()
.and() .and()
.httpBasic().and() .httpBasic()
.and()
.csrf().disable(); .csrf().disable();
} }
} }