1
0
Fork 0

Remove unnecessary code

pull/868/head
Jordi Boggiano 2012-07-03 10:43:34 +02:00 committed by Alexey Prilipko
parent 22aef0124e
commit 74da2f6730
1 changed files with 0 additions and 3 deletions

View File

@ -28,8 +28,6 @@ use Composer\Util\Filesystem;
*/ */
class PearInstaller extends LibraryInstaller class PearInstaller extends LibraryInstaller
{ {
private $filesystem;
/** /**
* Initializes library installer. * Initializes library installer.
* *
@ -41,7 +39,6 @@ class PearInstaller extends LibraryInstaller
*/ */
public function __construct(IOInterface $io, Composer $composer, $type = 'pear-library') public function __construct(IOInterface $io, Composer $composer, $type = 'pear-library')
{ {
$this->filesystem = new Filesystem();
parent::__construct($io, $composer, $type); parent::__construct($io, $composer, $type);
} }