From 70dc5ee44ea9a99d07ae45bbaed85705126bb76b Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Fri, 17 Jun 2016 16:37:32 -0400 Subject: [PATCH] Remove unimplemented finishRequest from header --- HttpClient.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/HttpClient.h b/HttpClient.h index e03b3ed..ab88408 100644 --- a/HttpClient.h +++ b/HttpClient.h @@ -148,11 +148,6 @@ public: void sendBasicAuth(const String& aUser, const String& aPassword) { sendBasicAuth(aUser.c_str(), aPassword.c_str()); } - /** Finish sending the HTTP request. This basically just sends the blank - line to signify the end of the request - */ - void finishRequest(); - /** Get the HTTP status code contained in the response. For example, 200 for successful request, 404 for file not found, etc. */