From: Gunnar Beutner Date: Mon, 19 Feb 2018 07:08:16 +0000 (+0100) Subject: Remove redundant 'this->' X-Git-Tag: v2.9.0~155^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a8d42b15426267b43e538eca96a8584b18cca1b;p=icinga2 Remove redundant 'this->' --- diff --git a/lib/remote/apiuser.cpp b/lib/remote/apiuser.cpp index 3fa025d83..ffa886925 100644 --- a/lib/remote/apiuser.cpp +++ b/lib/remote/apiuser.cpp @@ -50,7 +50,7 @@ ApiUser::Ptr ApiUser::GetByClientCN(const String& cn) Dictionary::Ptr ApiUser::GetPasswordDict(void) const { - String password = this->GetPasswordHash(); + String password = GetPasswordHash(); if (password.IsEmpty() || password[0] != '$') return nullptr;