1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 05:07:36 +02:00

Remove duplicate catch statements

This commit is contained in:
Jordi Boggiano
2016-05-20 20:01:29 +01:00
parent e46fecde34
commit 1fb211e43f

View File

@@ -35,8 +35,6 @@ class WhatFailureGroupHandler extends GroupHandler
$handler->handle($record);
} catch (\Throwable $e) {
// What failure?
} catch (\Throwable $e) {
// What failure?
}
}
@@ -53,8 +51,6 @@ class WhatFailureGroupHandler extends GroupHandler
$handler->handleBatch($records);
} catch (\Throwable $e) {
// What failure?
} catch (\Throwable $e) {
// What failure?
}
}
}