remove unused argument

This commit is contained in:
Robin Appelman 2014-06-10 15:42:37 +02:00
parent 054083b9cd
commit 6b1d8a56bb
1 changed files with 2 additions and 3 deletions

View File

@ -89,10 +89,9 @@ class Scanner extends BasicEmitter {
* *
* @param string $file * @param string $file
* @param int $reuseExisting * @param int $reuseExisting
* @param bool $parentExistsInCache
* @return array an array of metadata of the scanned file * @return array an array of metadata of the scanned file
*/ */
public function scanFile($file, $reuseExisting = 0, $parentExistsInCache = false) { public function scanFile($file, $reuseExisting = 0) {
if (!self::isPartialFile($file) if (!self::isPartialFile($file)
and !Filesystem::isFileBlacklisted($file) and !Filesystem::isFileBlacklisted($file)
) { ) {
@ -242,7 +241,7 @@ class Scanner extends BasicEmitter {
if (!Filesystem::isIgnoredDir($file)) { if (!Filesystem::isIgnoredDir($file)) {
$newChildren[] = $file; $newChildren[] = $file;
try { try {
$data = $this->scanFile($child, $reuse, true); $data = $this->scanFile($child, $reuse);
if ($data) { if ($data) {
if ($data['mimetype'] === 'httpd/unix-directory' and $recursive === self::SCAN_RECURSIVE) { if ($data['mimetype'] === 'httpd/unix-directory' and $recursive === self::SCAN_RECURSIVE) {
$childQueue[] = $child; $childQueue[] = $child;