aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <machine.sanctum@gmail.com>2014-05-20 14:43:49 +0200
committerMartijn Kaijser <machine.sanctum@gmail.com>2014-05-20 14:43:49 +0200
commit3394c58c55e74d6b06212825288c6298813ed813 (patch)
tree18ab9d0724dc4e85354d53a2bf3bded41c374dc7
parentc69432b865c3dd6cde0b9edebdedefd6fe5a4ed6 (diff)
parentd1c52a06d9e9dbfbb32a56dbbecc4f0faf706120 (diff)
Merge pull request #4745 from MartijnKaijser/httpapi
[pydocs] remove httpapi not implemented message.
-rw-r--r--xbmc/interfaces/legacy/ModuleXbmc.cpp6
-rw-r--r--xbmc/interfaces/legacy/ModuleXbmc.h5
2 files changed, 0 insertions, 11 deletions
diff --git a/xbmc/interfaces/legacy/ModuleXbmc.cpp b/xbmc/interfaces/legacy/ModuleXbmc.cpp
index 16f0174eda..cf6693c63a 100644
--- a/xbmc/interfaces/legacy/ModuleXbmc.cpp
+++ b/xbmc/interfaces/legacy/ModuleXbmc.cpp
@@ -113,12 +113,6 @@ namespace XBMCAddon
CApplicationMessenger::Get().ExecBuiltIn(function,wait);
}
- String executehttpapi(const char* httpcommand)
- {
- XBMC_TRACE;
- THROW_UNIMP("executehttpapi");
- }
-
String executeJSONRPC(const char* jsonrpccommand)
{
XBMC_TRACE;
diff --git a/xbmc/interfaces/legacy/ModuleXbmc.h b/xbmc/interfaces/legacy/ModuleXbmc.h
index de1743fb2b..c2e593f972 100644
--- a/xbmc/interfaces/legacy/ModuleXbmc.h
+++ b/xbmc/interfaces/legacy/ModuleXbmc.h
@@ -95,11 +95,6 @@ namespace XBMCAddon
void executebuiltin(const char* function, bool wait = false);
/**
- * executehttpapi(httpcommand) -- Not implemented anymore.
- */
- String executehttpapi(const char* httpcommand);
-
- /**
* executeJSONRPC(jsonrpccommand) -- Execute an JSONRPC command.
*
* jsonrpccommand : string - jsonrpc command to execute.