[utilities COMMIT] in /java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net: HttpServletRequest...

noreply at shibboleth.net noreply at shibboleth.net
Wed Apr 24 21:07:49 EDT 2013


Author: putmanb
Date: Wed Apr 24 21:07:49 2013
New Revision: 388

URL: http://svn.shibboleth.net/view/utilities?rev=388&view=rev
Log:
Copy/paste typos.

Modified:
    java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/HttpServletRequestResponseContext.java
    java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/ThreadLocalHttpServletResponseProxy.java

Modified: java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/HttpServletRequestResponseContext.java
URL: http://svn.shibboleth.net/view/utilities/java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/HttpServletRequestResponseContext.java?rev=388&r1=387&r2=388&view=diff
==============================================================================
--- java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/HttpServletRequestResponseContext.java (original)
+++ java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/HttpServletRequestResponseContext.java Wed Apr 24 21:07:49 2013
@@ -21,7 +21,7 @@
 	/** ThreadLocal storage for request. */
 	private static ThreadLocal<HttpServletRequest> currentRequest = new ThreadLocal<HttpServletRequest>();
 	
-	/** ThreadLocal storage for request. */
+	/** ThreadLocal storage for response. */
 	private static ThreadLocal<HttpServletResponse> currentResponse = new ThreadLocal<HttpServletResponse>();
 
 	/** Constructor. */

Modified: java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/ThreadLocalHttpServletResponseProxy.java
URL: http://svn.shibboleth.net/view/utilities/java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/ThreadLocalHttpServletResponseProxy.java?rev=388&r1=387&r2=388&view=diff
==============================================================================
--- java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/ThreadLocalHttpServletResponseProxy.java (original)
+++ java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/net/ThreadLocalHttpServletResponseProxy.java Wed Apr 24 21:07:49 2013
@@ -29,7 +29,7 @@
 
 /**
  * An implementation of {@link HttpServletResponse} which serves as a proxy for the 
- * current thread-local servlet request obtained from {@link HttpServletRequestResponseContext}.
+ * current thread-local servlet response obtained from {@link HttpServletRequestResponseContext}.
  */
 public class ThreadLocalHttpServletResponseProxy implements HttpServletResponse {
 
@@ -194,9 +194,9 @@
     }
     
     /**
-     * Get the current HttpServletRequest from ThreadLocal storage.
+     * Get the current HttpServletResponse from ThreadLocal storage.
      * 
-     * @return the current request
+     * @return the current response
      */
     protected HttpServletResponse getCurrent() {
         return Constraint.isNotNull(HttpServletRequestResponseContext.getResponse(),



More information about the commits mailing list