minor #24962 [Console] remove dead code (Tobion)

This PR was merged into the 2.7 branch.

Discussion
----------

[Console] remove dead code

| Q             | A
| ------------- | ---
| Branch?       | 2.7
| Bug fix?      | no
| New feature?  | no <!-- don't forget to update src/**/CHANGELOG.md files -->
| BC breaks?    | no
| Deprecations? | no <!-- don't forget to update UPGRADE-*.md files -->
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Part of #24961 for 2.7

Commits
-------

65f2b13 [Console] remove dead code
This commit is contained in:
Robin Chalas 2017-11-15 10:26:39 +01:00
commit 2c2253df8c
1 changed files with 4 additions and 6 deletions

View File

@ -112,15 +112,13 @@ class Application
try {
$e = null;
$exitCode = $this->doRun($input, $output);
} catch (\Exception $x) {
$e = $x;
} catch (\Throwable $x) {
$e = new FatalThrowableError($x);
} catch (\Exception $e) {
} catch (\Throwable $e) {
}
if (null !== $e) {
if (!$this->catchExceptions || !$x instanceof \Exception) {
throw $x;
if (!$this->catchExceptions || !$e instanceof \Exception) {
throw $e;
}
if ($output instanceof ConsoleOutputInterface) {