1
0
Fork 0

Remove dead code

pull/3983/head
Rob Bast 2015-04-30 12:10:27 +02:00
parent fb5394ce70
commit e7c044d4b2
1 changed files with 0 additions and 6 deletions

View File

@ -160,12 +160,6 @@ class ConsoleIO extends BaseIO
*/
private function doOverwrite($messages, $newline, $size, $stderr)
{
if (true === $stderr && $this->output instanceof ConsoleOutputInterface) {
$output = $this->output->getErrorOutput();
} else {
$output = $this->output;
}
// messages can be an array, let's convert it to string anyway
$messages = join($newline ? "\n" : '', (array) $messages);