aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.