1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Fix javadoc typo

This commit is contained in:
httpain
2019-04-30 17:01:44 +03:00
committed by Josh Cummings
parent e6ac9759e2
commit 98a8467e4c
@@ -40,7 +40,7 @@ public final class HttpStatusEntryPoint implements AuthenticationEntryPoint {
/**
* Creates a new instance.
*
* @param httpStatus the HttpSatus to set
* @param httpStatus the HttpStatus to set
*/
public HttpStatusEntryPoint(HttpStatus httpStatus) {
Assert.notNull(httpStatus, "httpStatus cannot be null");
@@ -51,4 +51,4 @@ public final class HttpStatusEntryPoint implements AuthenticationEntryPoint {
AuthenticationException authException) throws IOException, ServletException {
response.setStatus(httpStatus.value());
}
}
}