From 98a8467e4c2ae05b3e09c67ece856944fa48ed23 Mon Sep 17 00:00:00 2001 From: httpain <50144463+httpain@users.noreply.github.com> Date: Tue, 30 Apr 2019 17:01:44 +0300 Subject: [PATCH] Fix javadoc typo --- .../security/web/authentication/HttpStatusEntryPoint.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java b/web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java index feb68c2a09..b744ff20f0 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java +++ b/web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java @@ -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()); } -} \ No newline at end of file +}