Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed security debugging
  • Loading branch information
mraible committed Oct 20, 2016
1 parent d2bf824 commit b29e13f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main/java/com/example/SecurityConfiguration.java
Expand Up @@ -4,7 +4,6 @@
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
Expand All @@ -15,11 +14,6 @@
@Configuration
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

@Override
public void configure(WebSecurity web) throws Exception {
web.debug(true);
}

@Override
protected void configure(HttpSecurity http) throws Exception {
http.apply(stormpath()).and()
Expand Down

0 comments on commit b29e13f

Please sign in to comment.