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.
This commit is contained in:
Leon Krause
2017-10-26 22:06:47 +02:00
parent 58b849800e
commit d1102cb37d
3 changed files with 0 additions and 32 deletions

View File

@@ -189,16 +189,6 @@ Error HTTPClient::request(Method p_method, const String &p_url, const Vector<Str
return OK;
}
Error HTTPClient::send_body_text(const String &p_body) {
return OK;
}
Error HTTPClient::send_body_data(const PoolByteArray &p_body) {
return OK;
}
bool HTTPClient::has_response() const {
return response_headers.size() != 0;
@@ -629,8 +619,6 @@ void HTTPClient::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_connection"), &HTTPClient::get_connection);
ClassDB::bind_method(D_METHOD("request_raw", "method", "url", "headers", "body"), &HTTPClient::request_raw);
ClassDB::bind_method(D_METHOD("request", "method", "url", "headers", "body"), &HTTPClient::request, DEFVAL(String()));
ClassDB::bind_method(D_METHOD("send_body_text", "body"), &HTTPClient::send_body_text);
ClassDB::bind_method(D_METHOD("send_body_data", "body"), &HTTPClient::send_body_data);
ClassDB::bind_method(D_METHOD("close"), &HTTPClient::close);
ClassDB::bind_method(D_METHOD("has_response"), &HTTPClient::has_response);