From d1102cb37d4c299958c9aed0a5db5d62754753b2 Mon Sep 17 00:00:00 2001 From: Leon Krause Date: Thu, 26 Oct 2017 22:06:47 +0200 Subject: Remove HTTPClient::send_body_text and ::send_body_data These were never implemented, the request* methods provide parameters to send body data as part of the client's requests. --- core/io/http_client.cpp | 12 ------------ core/io/http_client.h | 2 -- doc/classes/HTTPClient.xml | 18 ------------------ 3 files changed, 32 deletions(-) diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp index b8c0a2b616..46d52384e5 100644 --- a/core/io/http_client.cpp +++ b/core/io/http_client.cpp @@ -189,16 +189,6 @@ Error HTTPClient::request(Method p_method, const String &p_url, const Vector &p_headers, const PoolVector &p_body); Error request(Method p_method, const String &p_url, const Vector &p_headers, const String &p_body = String()); - Error send_body_text(const String &p_body); - Error send_body_data(const PoolByteArray &p_body); void close(); diff --git a/doc/classes/HTTPClient.xml b/doc/classes/HTTPClient.xml index e75aee0126..f148545848 100644 --- a/doc/classes/HTTPClient.xml +++ b/doc/classes/HTTPClient.xml @@ -169,24 +169,6 @@ Sends body raw, as a byte array, does not encode it in any way. - - - - - - - Stub function - - - - - - - - - Stub function - - -- cgit v1.2.3