minor cleanup work

This commit is contained in:
eugenp 2016-09-25 15:18:08 +03:00
parent db3a847240
commit a351667adc
7 changed files with 318 additions and 324 deletions

View File

@ -37,13 +37,7 @@ public class WebMVCSecurity extends WebSecurityConfigurerAdapter {
@Override @Override
protected void configure(final HttpSecurity http) throws Exception { protected void configure(final HttpSecurity http) throws Exception {
http http.authorizeRequests().anyRequest().authenticated().and().httpBasic();
.authorizeRequests()
.anyRequest()
.authenticated()
.and()
.httpBasic()
;
} }
} }