mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 20:24:41 +00:00
removed duplicated functions in class hierarchy that were bound more than once
added a check to detect this case in the future
This commit is contained in:
parent
93ab45b6b5
commit
dcb95ec147
46 changed files with 179 additions and 210 deletions
|
|
@ -40,7 +40,7 @@ void HTTPRequest::_redirect_request(const String& p_new_url) {
|
|||
Error HTTPRequest::_request() {
|
||||
|
||||
//print_line("Requesting:\n\tURL: "+url+"\n\tString: "+request_string+"\n\tPort: "+itos(port)+"\n\tSSL: "+itos(use_ssl)+"\n\tValidate SSL: "+itos(validate_ssl));
|
||||
return client->connect(url,port,use_ssl,validate_ssl);
|
||||
return client->connect_to_host(url,port,use_ssl,validate_ssl);
|
||||
}
|
||||
|
||||
Error HTTPRequest::_parse_url(const String& p_url) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue