diff --git a/src/core/PasswordHealth.cpp b/src/core/PasswordHealth.cpp index 8b5998d41..c7d00f761 100644 --- a/src/core/PasswordHealth.cpp +++ b/src/core/PasswordHealth.cpp @@ -204,7 +204,6 @@ QSharedPointer HealthChecker::evaluate(const Entry* entry) const // Unfortunately, Qt doesn't seem to have a utility for seconds->year. // (365 days)(24 hours/day)(3600 s/hr) is approximately a year and gets compiled away. if (ageInSeconds / (365 * 24 * 3600) > 1) { - Tools::humanReadableTimeDifference(ageInSeconds); health->addScoreReason(QObject::tr("Password is %1 old").arg(Tools::humanReadableTimeDifference(ageInSeconds))); }