mirror of https://github.com/Icinga/icinga2.git
Remove duplicate semicolons
This commit is contained in:
parent
361fed8ba0
commit
0cc9af6bee
|
@ -303,7 +303,7 @@ DebugInfo ScriptError::GetDebugInfo() const
|
|||
|
||||
bool ScriptError::IsIncompleteExpression() const
|
||||
{
|
||||
return m_IncompleteExpr;;
|
||||
return m_IncompleteExpr;
|
||||
}
|
||||
|
||||
bool ScriptError::IsHandledByDebugger() const
|
||||
|
|
|
@ -122,7 +122,7 @@ void ThreadPool::WorkerThread::ThreadProc(Queue& queue)
|
|||
UpdateUtilization(ThreadBusy);
|
||||
}
|
||||
|
||||
double st = Utility::GetTime();;
|
||||
double st = Utility::GetTime();
|
||||
|
||||
#ifdef I2_DEBUG
|
||||
# ifdef RUSAGE_THREAD
|
||||
|
|
|
@ -48,7 +48,7 @@ Value MacroProcessor::ResolveMacros(const Value& str, const ResolverList& resolv
|
|||
result = InternalResolveMacros(str, resolvers, cr, missingMacro, escapeFn,
|
||||
resolvedMacros, useResolvedMacros, recursionLevel + 1);
|
||||
} else if (str.IsObjectType<Array>()) {
|
||||
ArrayData resultArr;;
|
||||
ArrayData resultArr;
|
||||
Array::Ptr arr = str;
|
||||
|
||||
ObjectLock olock(arr);
|
||||
|
|
|
@ -81,7 +81,7 @@ void ApiClient::TypesHttpCompletionCallback(HttpRequest& request, HttpResponse&
|
|||
ObjectLock olock(results);
|
||||
for (const Dictionary::Ptr typeInfo : results)
|
||||
{
|
||||
ApiType::Ptr type = new ApiType();;
|
||||
ApiType::Ptr type = new ApiType();
|
||||
type->Abstract = typeInfo->Get("abstract");
|
||||
type->BaseName = typeInfo->Get("base");
|
||||
type->Name = typeInfo->Get("name");
|
||||
|
|
Loading…
Reference in New Issue