Bug 1164556 - Part 2: Remove debug conditional. r=gcp

Remove what appears to be leftover debug code bypassing an if condition.
This commit is contained in:
Eric Rahm 2015-05-14 10:13:23 -07:00
Родитель bc7a3b2ae7
Коммит 31d09285f6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -301,7 +301,7 @@ Classifier::ApplyUpdates(nsTArray<TableUpdate*>* aUpdates)
Telemetry::AutoTimer<Telemetry::URLCLASSIFIER_CL_UPDATE_TIME> timer;
PRIntervalTime clockStart = 0;
if (LOG_ENABLED() || true) {
if (LOG_ENABLED()) {
clockStart = PR_IntervalNow();
}
@ -344,7 +344,7 @@ Classifier::ApplyUpdates(nsTArray<TableUpdate*>* aUpdates)
LOG(("Done applying updates."));
if (LOG_ENABLED() || true) {
if (LOG_ENABLED()) {
PRIntervalTime clockEnd = PR_IntervalNow();
LOG(("update took %dms\n",
PR_IntervalToMilliseconds(clockEnd - clockStart)));