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 2011/09/01 03:41:00 UTC

svn commit: r1163890 - in /httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio: entity/NStringEntity.java protocol/HttpAsyncRequestProducer.java

Author: sebb
Date: Thu Sep  1 01:40:59 2011
New Revision: 1163890

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

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/entity/NStringEntity.java
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncRequestProducer.java

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/entity/NStringEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/entity/NStringEntity.java?rev=1163890&r1=1163889&r2=1163890&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/entity/NStringEntity.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/entity/NStringEntity.java Thu Sep  1 01:40:59 2011
@@ -113,7 +113,7 @@ public class NStringEntity extends Abstr
     /**
      * Creates a NStringEntity with the specified content and content type.
      *
-     * @param string content to be used. Not {@code null}.
+     * @param s content to be used. Not {@code null}.
      * @param contentType content type to be used. May be {@code null}, in which case the default
      *   MIME type {@link HTTP#PLAIN_TEXT_TYPE} i.e. "text/plain" and the default charset
      *   {@link HTTP#DEFAULT_CONTENT_CHARSET} i.e. "ISO-8859-1" are assumed.
@@ -144,7 +144,7 @@ public class NStringEntity extends Abstr
      * Creates a NStringEntity with the specified content and charset. The mime type defaults
      * to {@link HTTP#PLAIN_TEXT_TYPE} i.e. "text/plain".
      *
-     * @param string content to be used. Not {@code null}.
+     * @param s content to be used. Not {@code null}.
      * @param charset character set to be used. May be {@code null}, in which case the default
      *   is {@link HTTP#DEFAULT_CONTENT_CHARSET} i.e. "ISO-8859-1"
      *
@@ -161,7 +161,7 @@ public class NStringEntity extends Abstr
      * {@link HTTP#DEFAULT_CONTENT_CHARSET} i.e. "ISO-8859-1". The mime type defaults to
      * {@link HTTP#PLAIN_TEXT_TYPE} i.e. "text/plain".
      *
-     * @param string content to be used. Not {@code null}.
+     * @param s content to be used. Not {@code null}.
      *
      * @throws IllegalArgumentException if the string parameter is null
      * @throws UnsupportedEncodingException if the default HTTP charset is not supported.

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncRequestProducer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncRequestProducer.java?rev=1163890&r1=1163889&r2=1163890&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncRequestProducer.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncRequestProducer.java Thu Sep  1 01:40:59 2011
@@ -36,7 +36,7 @@ import org.apache.http.nio.ContentEncode
 import org.apache.http.nio.IOControl;
 
 /**
- * @ since 4.2
+ * @since 4.2
  */
 public interface HttpAsyncRequestProducer extends Closeable {