1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-27 06:54:16 +01:00

Refactor.

- remove unnecessary else { } wrap.
This commit is contained in:
Jean Paul Galea 2015-07-17 23:07:17 +02:00
parent fd5391bb91
commit 5a272cf928

View File

@ -204,11 +204,9 @@ class SyncLib
$this->log(LOG_INFO, "yubikey found in db ", $localParams);
return $localParams;
}
else
{
$this->log(LOG_NOTICE, "params for yk_publicname $yk_publicname not found in database");
return false;
}
$this->log(LOG_NOTICE, "params for yk_publicname $yk_publicname not found in database");
return false;
}
private function parseParamsFromMultiLineString($str)