Remove unused variables

fixes #11111
This commit is contained in:
Jean Flach 2016-02-08 17:10:12 +01:00 committed by Gunnar Beutner
parent 9bc7f0ad75
commit c1b4a8b757
3 changed files with 1 additions and 4 deletions

View File

@ -242,7 +242,6 @@ void ConfigObject::RestoreAttribute(const String& attr, bool updateVersion)
String fieldName = tokens[0];
int fid = type->GetFieldId(fieldName);
Field field = type->GetFieldInfo(fid);
Value currentValue = GetField(fid);

View File

@ -285,7 +285,6 @@ void ApiClient::ExecuteScriptHttpCompletionCallback(HttpRequest& request,
Array::Ptr results = result->Get("results");
Value result;
bool incompleteExpression = false;
String errorMessage = "Unexpected result from API.";
if (results && results->GetLength() > 0) {

View File

@ -35,7 +35,6 @@ using namespace icinga;
REGISTER_URLHANDLER("/v1/console", ConsoleHandler);
static int l_ExternalCommands = 0;
static boost::mutex l_QueryMutex;
static std::map<String, ApiScriptFrame> l_ApiScriptFrames;
static Timer::Ptr l_FrameCleanupTimer;
@ -241,7 +240,7 @@ std::vector<String> ConsoleHandler::GetAutocompletionSuggestions(const String& w
String::SizeType cperiod = word.RFind(".");
if (cperiod != -1) {
if (cperiod != String::NPos) {
String pword = word.SubStr(0, cperiod);
Value value;