refactor: Remove redundant conditional

This commit is contained in:
Bushstar 2020-01-21 14:07:42 +00:00
parent 631df3ee87
commit e80317be5f
No known key found for this signature in database
GPG key ID: 21E09A54A3615F99

View file

@ -90,8 +90,7 @@ private:
nTotal--;
bool fRet = fAllOk;
// reset the status for new work later
if (fMaster)
fAllOk = true;
fAllOk = true;
// return the current status
return fRet;
}