You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2009/09/03 23:16:51 UTC

svn commit: r811127 - /httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/entity/StringEntity.java

Author: olegk
Date: Thu Sep  3 21:16:51 2009
New Revision: 811127

URL: http://svn.apache.org/viewvc?rev=811127&view=rev
Log:
Added @since tag to the new constructor

Modified:
    httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/entity/StringEntity.java

Modified: httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/entity/StringEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/entity/StringEntity.java?rev=811127&r1=811126&r2=811127&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/entity/StringEntity.java (original)
+++ httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/entity/StringEntity.java Thu Sep  3 21:16:51 2009
@@ -45,6 +45,9 @@
 
     protected final byte[] content;
 
+    /**
+     * @since 4.1
+     */
     public StringEntity(final String s, String mimeType, String charset) 
             throws UnsupportedEncodingException {
         super();