You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2008/05/03 13:49:50 UTC

svn commit: r653057 - in /httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio: entity/ProducingNHttpEntity.java protocol/NHttpRequestExecutionHandler.java

Author: sebb
Date: Sat May  3 04:49:50 2008
New Revision: 653057

URL: http://svn.apache.org/viewvc?rev=653057&view=rev
Log:
Javadoc fixes

Modified:
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ProducingNHttpEntity.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpRequestExecutionHandler.java

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ProducingNHttpEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ProducingNHttpEntity.java?rev=653057&r1=653056&r2=653057&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ProducingNHttpEntity.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ProducingNHttpEntity.java Sat May  3 04:49:50 2008
@@ -38,7 +38,7 @@
 import org.apache.http.nio.IOControl;
 
 /**
- * An {@link NHttpEntity} that writes content to a {@link ContentEncoder}.
+ * An {@link HttpEntity} that writes content to a {@link ContentEncoder}.
  *
  * @author <a href="mailto:sberlin at gmail.com">Sam Berlin</a>
  */

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpRequestExecutionHandler.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpRequestExecutionHandler.java?rev=653057&r1=653056&r2=653057&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpRequestExecutionHandler.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpRequestExecutionHandler.java Sat May  3 04:49:50 2008
@@ -44,7 +44,7 @@
  * HTTP request execution handler can be used by client-side protocol handlers
  * to trigger the submission of a new HTTP request and the processing of an HTTP
  * response. When a new response entity is available for consumption,
- * {@link #responseEntity(HttpRequest, HttpResponse, HttpContext)} is called.
+ * {@link #responseEntity(HttpResponse, HttpContext)} is called.
  * After the {@link ConsumingNHttpEntity} consumes the response body,
  * {@link #handleResponse(HttpResponse, HttpContext)} is notified that the
  * response is fully read.