mirror of https://github.com/Icinga/icinga2.git
commit
e5d988a2fe
|
@ -23,4 +23,3 @@ Object::Ptr Boolean::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,4 +6,3 @@
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
|
||||||
REGISTER_BUILTIN_TYPE(Boolean, Boolean::GetPrototype());
|
REGISTER_BUILTIN_TYPE(Boolean, Boolean::GetPrototype());
|
||||||
|
|
||||||
|
|
|
@ -33,4 +33,3 @@ Object::Ptr ConfigObject::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,4 +25,3 @@ Object::Ptr DateTime::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -95,4 +95,3 @@ void icinga::ShowCodeLocation(std::ostream& out, const DebugInfo& di, bool verbo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -116,4 +116,3 @@ Object::Ptr Dictionary::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -300,4 +300,3 @@ Dictionary::Iterator icinga::end(const Dictionary::Ptr& x)
|
||||||
{
|
{
|
||||||
return x->End();
|
return x->End();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,4 +47,3 @@ Object::Ptr Function::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,4 +10,3 @@ bool icinga::InitializeOnceHelper(const std::function<void()>& func, InitializeP
|
||||||
Loader::AddDeferredInitializer(func, priority);
|
Loader::AddDeferredInitializer(func, priority);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,4 +35,3 @@ void Loader::AddDeferredInitializer(const std::function<void()>& callback, Initi
|
||||||
|
|
||||||
initializers->push(DeferredInitializer(callback, priority));
|
initializers->push(DeferredInitializer(callback, priority));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -81,4 +81,3 @@ Object::Ptr Namespace::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -186,4 +186,3 @@ Namespace::Iterator icinga::end(const Namespace::Ptr& x)
|
||||||
{
|
{
|
||||||
return x->End();
|
return x->End();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,3 @@ Object::Ptr Number::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,4 +6,3 @@
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
|
||||||
REGISTER_BUILTIN_TYPE(Number, Number::GetPrototype());
|
REGISTER_BUILTIN_TYPE(Number, Number::GetPrototype());
|
||||||
|
|
||||||
|
|
|
@ -42,4 +42,3 @@ Object::Ptr Object::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,4 +54,3 @@ ObjectFactory ObjectType::GetFactory() const
|
||||||
{
|
{
|
||||||
return DefaultObjectFactory<Object>;
|
return DefaultObjectFactory<Object>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,4 +61,3 @@ ObjectFactory PrimitiveType::GetFactory() const
|
||||||
{
|
{
|
||||||
return m_Factory;
|
return m_Factory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -107,4 +107,3 @@ void ScriptGlobal::WriteToFile(const String& filename)
|
||||||
sfp->Close();
|
sfp->Close();
|
||||||
fp.Commit();
|
fp.Commit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -135,4 +135,3 @@ Object::Ptr String::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -214,4 +214,3 @@ ObjectFactory TypeType::GetFactory() const
|
||||||
{
|
{
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,4 +28,3 @@ Object::Ptr TypeType::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -64,4 +64,3 @@ int InternalSignalCommand::Run(const boost::program_options::variables_map& vm,
|
||||||
#endif /* _Win32 */
|
#endif /* _Win32 */
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,4 +49,3 @@ int VariableListCommand::Run(const boost::program_options::variables_map& vm, co
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,4 +58,3 @@ ActivationContext::Ptr ActivationScope::GetContext() const
|
||||||
{
|
{
|
||||||
return m_Context;
|
return m_Context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,4 +54,3 @@ void ConfigCompilerContext::FinishObjectsFile()
|
||||||
m_ObjectsFP->Commit();
|
m_ObjectsFP->Commit();
|
||||||
m_ObjectsFP.reset(nullptr);
|
m_ObjectsFP.reset(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -117,4 +117,3 @@ ConfigItem::Ptr ConfigItemBuilder::Compile()
|
||||||
return new ConfigItem(m_Type, m_Name, m_Abstract, exprl, m_Filter,
|
return new ConfigItem(m_Type, m_Name, m_Abstract, exprl, m_Filter,
|
||||||
m_DefaultTmpl, m_IgnoreOnError, m_DebugInfo, m_Scope, m_Zone, m_Package);
|
m_DefaultTmpl, m_IgnoreOnError, m_DebugInfo, m_Scope, m_Zone, m_Package);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1065,4 +1065,3 @@ ExpressionResult TryExceptExpression::DoEvaluate(ScriptFrame& frame, DebugHint *
|
||||||
|
|
||||||
return Empty;
|
return Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -138,4 +138,3 @@ DbTypeRegistry *DbTypeRegistry::GetInstance()
|
||||||
{
|
{
|
||||||
return Singleton<DbTypeRegistry>::GetInstance();
|
return Singleton<DbTypeRegistry>::GetInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,4 +25,3 @@ Object::Ptr Checkable::GetPrototype()
|
||||||
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,4 +46,3 @@ int icinga::FilterArrayToInt(const Array::Ptr& typeFilters, const std::map<Strin
|
||||||
|
|
||||||
return resultTypeFilter;
|
return resultTypeFilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2278,4 +2278,3 @@ std::map<String, ExternalCommandInfo>& ExternalCommandProcessor::GetCommands()
|
||||||
static std::map<String, ExternalCommandInfo> commands;
|
static std::map<String, ExternalCommandInfo> commands;
|
||||||
return commands;
|
return commands;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -125,4 +125,3 @@ bool UserGroup::ResolveGroupMembership(const User::Ptr& user, bool add, int rsta
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,4 +51,3 @@ Dictionary::Ptr IcingaDB::GetStats()
|
||||||
|
|
||||||
return stats;
|
return stats;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -593,4 +593,3 @@ void InfluxdbCommonWriter::ValidateServiceTemplate(const Lazy<Dictionary::Ptr>&
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,4 +52,3 @@ ApiUser::Ptr ApiUser::GetByAuthHeader(const String& auth_header)
|
||||||
|
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -222,4 +222,3 @@ void ConfigStagesHandler::HandleDelete(
|
||||||
response.result(http::status::ok);
|
response.result(http::status::ok);
|
||||||
HttpUtility::SendJsonBody(response, params, result);
|
HttpUtility::SendJsonBody(response, params, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,4 +120,3 @@ bool DeleteObjectHandler::HandleRequest(
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -134,4 +134,3 @@ bool EventsHandler::HandleRequest(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -295,4 +295,3 @@ std::vector<Value> FilterUtility::GetFilterTargets(const QueryDescription& qd, c
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -126,4 +126,3 @@ void HttpHandler::ProcessRequest(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -97,4 +97,3 @@ bool InfoHandler::HandleRequest(
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,4 +45,3 @@ Value JsonRpcConnection::HeartbeatAPIHandler(const MessageOrigin::Ptr& origin, c
|
||||||
{
|
{
|
||||||
return Empty;
|
return Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -449,4 +449,3 @@ Dictionary::Ptr PkiUtility::GetCertificateRequests(bool removed)
|
||||||
|
|
||||||
return requests;
|
return requests;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -117,4 +117,3 @@ bool StatusHandler::HandleRequest(
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -360,4 +360,3 @@ bool Url::ValidateToken(const String& token, const String& symbols)
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -118,4 +118,3 @@ bool VariableQueryHandler::HandleRequest(
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue