From d85f3a2b82dfb2ec3ece2969646bd874cc290fbf Mon Sep 17 00:00:00 2001 From: mattesony <49170923+mattesony@users.noreply.github.com> Date: Tue, 1 Nov 2022 05:16:01 -0700 Subject: [PATCH] Removed one other extraneous line --- src/core/PasswordHealth.cpp | 1 - 1 file changed, 1 deletion(-) 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))); }