1
0
Fork 0

Remove unnecessary code

pull/862/merge
Jordi Boggiano 2012-07-03 10:43:34 +02:00
parent 6fb667a752
commit b82b9b53f7
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);
} }