[Lock] remove useless code

This commit is contained in:
Rudy Onfroy 2018-09-19 16:46:49 +02:00 committed by Nicolas Grekas
parent da1999856f
commit 0d38c710c3

View File

@ -151,8 +151,6 @@ class CombinedStore implements StoreInterface, LoggerAwareInterface
$store->delete($key);
} catch (\Exception $e) {
$this->logger->notice('One store failed to delete the "{resource}" lock.', array('resource' => $key, 'store' => $store, 'exception' => $e));
} catch (\Throwable $e) {
$this->logger->notice('One store failed to delete the "{resource}" lock.', array('resource' => $key, 'store' => $store, 'exception' => $e));
}
}
}