aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <mcm.kaijser@gmail.com>2014-05-18 18:07:57 +0200
committerMartijn Kaijser <mcm.kaijser@gmail.com>2014-05-18 18:07:57 +0200
commitd1c52a06d9e9dbfbb32a56dbbecc4f0faf706120 (patch)
tree7922ffcc90248c489bcc88102503b983b6025bf5
parentb68aa9c596757475ad484be5b8ea2683fa591e0c (diff)
[pydocs] remove httpapi not implemented message. python module dependency bump makes sure these scripts cannot be installed anymore
-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.