Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -51,4 +51,4 @@ public void commence(HttpServletRequest request, HttpServletResponse response,
AuthenticationException authException) throws IOException, ServletException {
response.setStatus(httpStatus.value());
}
}
}