You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2015/08/27 00:05:34 UTC

svn commit: r1698015 - /httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/IncomingHttpEntity.java

Author: ggregory
Date: Wed Aug 26 22:05:34 2015
New Revision: 1698015

URL: http://svn.apache.org/r1698015
Log:
Redundant superinterface HttpContentProducer for the type IncomingHttpEntity, already defined by AbstractImmutableHttpEntity.

Modified:
    httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/IncomingHttpEntity.java

Modified: httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/IncomingHttpEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/IncomingHttpEntity.java?rev=1698015&r1=1698014&r2=1698015&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/IncomingHttpEntity.java (original)
+++ httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/IncomingHttpEntity.java Wed Aug 26 22:05:34 2015
@@ -42,7 +42,7 @@ import org.apache.http.impl.io.EmptyInpu
  * @since 5.0
  */
 @NotThreadSafe
-public class IncomingHttpEntity extends AbstractImmutableHttpEntity implements HttpContentProducer {
+public class IncomingHttpEntity extends AbstractImmutableHttpEntity {
 
     private final InputStream content;
     private final long len;