Skip to content

Commit bf6ee16

Browse files
committed
Fix copy-n-paste errors in NativeWebRequest
1 parent 0fb4b74 commit bf6ee16

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-web/src/main/java/org/springframework/web/context/request/NativeWebRequest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -56,13 +56,13 @@ public interface NativeWebRequest extends WebRequest {
5656
<T> T getNativeRequest(Class<T> requiredType);
5757

5858
/**
59-
* Return the underlying native request object, if available.
59+
* Return the underlying native response object, if available.
6060
* @param requiredType the desired type of response object
6161
* @return the matching response object, or {@code null} if none
6262
* of that type is available
63-
* @see javax.servlet.http.HttpServletRequest
64-
* @see javax.portlet.ActionRequest
65-
* @see javax.portlet.RenderRequest
63+
* @see javax.servlet.http.HttpServletResponse
64+
* @see javax.portlet.ActionResponse
65+
* @see javax.portlet.RenderResponse
6666
*/
6767
<T> T getNativeResponse(Class<T> requiredType);
6868

0 commit comments

Comments
 (0)