From d34d8764b03c35f613ee788013c16d174ea3c125 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 7 Apr 2010 13:51:46 +0000 Subject: [PATCH] fixed getOriginatingQueryString javadoc (SPR-7072) --- .../java/org/springframework/web/util/UrlPathHelper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/org.springframework.web/src/main/java/org/springframework/web/util/UrlPathHelper.java b/org.springframework.web/src/main/java/org/springframework/web/util/UrlPathHelper.java index 22a5e7dcc1d..622566d9943 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/util/UrlPathHelper.java +++ b/org.springframework.web/src/main/java/org/springframework/web/util/UrlPathHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2008 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -234,7 +234,7 @@ public class UrlPathHelper { /** - * Return the request URI for root of the given request. If this is a forwarded request, + * Return the request URI for the given request. If this is a forwarded request, * correctly resolves to the request URI of the original request. *

Relies on the Servlet 2.4 'forward' attributes. These attributes may be set by * other components when running in a Servlet 2.3 environment. @@ -266,8 +266,8 @@ public class UrlPathHelper { } /** - * Return the request URI for root of the given request. If this is a forwarded request, - * correctly resolves to the request URI of the original request. + * Return the query string part of the given request's URL. If this is a forwarded request, + * correctly resolves to the query string of the original request. *

Relies on the Servlet 2.4 'forward' attributes. These attributes may be set by * other components when running in a Servlet 2.3 environment. * @param request current HTTP request