Add missing semicolon in example

Closes gh-13266
This commit is contained in:
Arnaud Heritier 2018-05-25 16:59:13 +01:00 committed by Stephane Nicoll
parent 6f0ccc64a5
commit b60eadb10b
1 changed files with 1 additions and 1 deletions

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();
}
}