Merge pull request #13266 from aheritier:patch-2

* pr/13266:
  Add missing semicolon in example
This commit is contained in:
Stephane Nicoll
2018-05-26 12:44:36 +02:00

View File

@@ -419,7 +419,7 @@ following example:
@Override
protected void configure(HttpSecurity http) throws Exception {
http.requestMatcher(EndpointRequest.toAnyEndpoint()).authorizeRequests()
.anyRequest().permitAll()
.anyRequest().permitAll();
}
}