From 8a8d42b15426267b43e538eca96a8584b18cca1b Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 19 Feb 2018 08:08:16 +0100 Subject: [PATCH] Remove redundant 'this->' --- lib/remote/apiuser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;