Browse Source

Cleanup, not needed here.

Beau Simensen 13 years ago
parent
commit
8fde0379ed
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/Composer/Command/UpdateCommand.php

+ 1 - 3
src/Composer/Command/UpdateCommand.php

@@ -13,7 +13,6 @@
 namespace Composer\Command;
 namespace Composer\Command;
 
 
 use Composer\Installer;
 use Composer\Installer;
-use Composer\Script\EventDispatcher;
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
@@ -50,8 +49,7 @@ EOT
     {
     {
         $composer = $this->getComposer();
         $composer = $this->getComposer();
         $io = $this->getApplication()->getIO();
         $io = $this->getApplication()->getIO();
-        $eventDispatcher = new EventDispatcher($composer, $io);
-        $install = Installer::create($io, $composer, $eventDispatcher);
+        $install = Installer::create($io, $composer);
 
 
         return $install->run(
         return $install->run(
             (Boolean)$input->getOption('prefer-source'),
             (Boolean)$input->getOption('prefer-source'),