1
0
mirror of synced 2026-07-19 09:35:12 +00:00

Fix typo in Javadoc of HttpSecurity#csrf()

`HttpSecurity#csrf()` obviously returns a `CsrfConfigurer`, while the Javadoc states that it returns the `ServletApiConfigurer`.
This commit is contained in:
Erik van Paassen
2020-03-17 17:30:48 +01:00
committed by Josh Cummings
parent 475a53233d
commit d4ceabd7ac
@@ -721,7 +721,7 @@ public final class HttpSecurity extends
* }
* </pre>
*
* @return the {@link ServletApiConfigurer} for further customizations
* @return the {@link CsrfConfigurer} for further customizations
* @throws Exception
*/
public CsrfConfigurer<HttpSecurity> csrf() throws Exception {