CLOUD: Remove unused removePathHandler(), make addPathHandler() private

This commit is contained in:
Peter Bozsó 2016-07-26 19:30:44 +02:00 committed by Alexander Tkachev
parent 9665719b66
commit b68bd78b44
2 changed files with 1 additions and 8 deletions

View file

@ -82,6 +82,7 @@ class LocalWebserver : public Common::Singleton<LocalWebserver> {
void handleClient(uint32 i);
void acceptClient();
void resolveAddress(void *ipAddress);
void addPathHandler(Common::String path, ClientHandlerCallback handler);
public:
static const uint32 DEFAULT_SERVER_PORT = 12345;
@ -92,8 +93,6 @@ public:
void start();
void stop();
void stopOnIdle();
void addPathHandler(Common::String path, ClientHandlerCallback handler);
void removePathHandler(Common::String path);
Common::String getAddress();
IndexPageHandler &indexPageHandler();