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 2017/03/15 10:34:34 UTC

svn commit: r1787017 - /httpcomponents/httpclient/branches/4.6.x/httpclient/src/main/java/org/apache/http/client/methods/HttpOptions.java

Author: olegk
Date: Wed Mar 15 10:34:34 2017
New Revision: 1787017

URL: http://svn.apache.org/viewvc?rev=1787017&view=rev
Log:
HttpOptions changed to extend HttpEntityEnclosingRequestBase

Modified:
    httpcomponents/httpclient/branches/4.6.x/httpclient/src/main/java/org/apache/http/client/methods/HttpOptions.java

Modified: httpcomponents/httpclient/branches/4.6.x/httpclient/src/main/java/org/apache/http/client/methods/HttpOptions.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/branches/4.6.x/httpclient/src/main/java/org/apache/http/client/methods/HttpOptions.java?rev=1787017&r1=1787016&r2=1787017&view=diff
==============================================================================
--- httpcomponents/httpclient/branches/4.6.x/httpclient/src/main/java/org/apache/http/client/methods/HttpOptions.java (original)
+++ httpcomponents/httpclient/branches/4.6.x/httpclient/src/main/java/org/apache/http/client/methods/HttpOptions.java Wed Mar 15 10:34:34 2017
@@ -54,7 +54,7 @@ import org.apache.http.util.Args;
  *
  * @since 4.0
  */
-public class HttpOptions extends HttpRequestBase {
+public class HttpOptions extends HttpEntityEnclosingRequestBase {
 
     public final static String METHOD_NAME = "OPTIONS";