From bf6ee1631c065b26198898f59ba7c54423bd5d02 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 13 Mar 2013 13:00:57 +0100 Subject: [PATCH] Fix copy-n-paste errors in NativeWebRequest --- .../web/context/request/NativeWebRequest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/context/request/NativeWebRequest.java b/spring-web/src/main/java/org/springframework/web/context/request/NativeWebRequest.java index 2b0df14d95..8554099076 100644 --- a/spring-web/src/main/java/org/springframework/web/context/request/NativeWebRequest.java +++ b/spring-web/src/main/java/org/springframework/web/context/request/NativeWebRequest.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 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. @@ -56,13 +56,13 @@ public interface NativeWebRequest extends WebRequest { T getNativeRequest(Class requiredType); /** - * Return the underlying native request object, if available. + * Return the underlying native response object, if available. * @param requiredType the desired type of response object * @return the matching response object, or {@code null} if none * of that type is available - * @see javax.servlet.http.HttpServletRequest - * @see javax.portlet.ActionRequest - * @see javax.portlet.RenderRequest + * @see javax.servlet.http.HttpServletResponse + * @see javax.portlet.ActionResponse + * @see javax.portlet.RenderResponse */ T getNativeResponse(Class requiredType);