From 5a0b768a3d81c7f3190b64162f96f69f91ee90c6 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 23 Jan 2020 16:22:52 +0900 Subject: [PATCH] Fix typo in Javadoc --- .../web/server/adapter/HttpWebHandlerAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/server/adapter/HttpWebHandlerAdapter.java b/spring-web/src/main/java/org/springframework/web/server/adapter/HttpWebHandlerAdapter.java index 63a87d2d04..06c6340808 100644 --- a/spring-web/src/main/java/org/springframework/web/server/adapter/HttpWebHandlerAdapter.java +++ b/spring-web/src/main/java/org/springframework/web/server/adapter/HttpWebHandlerAdapter.java @@ -247,7 +247,7 @@ public class HttpWebHandlerAdapter extends WebHandlerDecorator implements HttpHa * Format the request for logging purposes including HTTP method and URL. *

By default this prints the HTTP method, the URL path, and the query. * @param request the request to format - * @return the String to display, never empty or @code null} + * @return the String to display, never empty or {@code null} */ protected String formatRequest(ServerHttpRequest request) { String rawQuery = request.getURI().getRawQuery();