Browse Source

Remove deadcode, fixes #4345, fixes #4268

Jordi Boggiano 9 years ago
parent
commit
0457ec6fb3
1 changed files with 0 additions and 14 deletions
  1. 0 14
      src/Composer/Repository/CompositeRepository.php

+ 0 - 14
src/Composer/Repository/CompositeRepository.php

@@ -108,20 +108,6 @@ class CompositeRepository implements RepositoryInterface
         return $matches ? call_user_func_array('array_merge', $matches) : array();
     }
 
-    /**
-     * {@inheritDoc}
-     */
-    public function filterPackages($callback, $class = 'Composer\Package\Package')
-    {
-        foreach ($this->repositories as $repository) {
-            if (false === $repository->filterPackages($callback, $class)) {
-                return false;
-            }
-        }
-
-        return true;
-    }
-
     /**
      * {@inheritdoc}
      */