Remove redundant 'this->'

This commit is contained in:
Gunnar Beutner 2018-02-19 08:08:16 +01:00
parent 0a0795f09d
commit 8a8d42b154
1 changed files with 1 additions and 1 deletions

View File

@ -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;