[Pkg-owncloud-commits] [owncloud] 59/85: remove unused argument
David Prévot
taffit at moszumanska.debian.org
Tue Jun 17 19:12:45 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch 6.0
in repository owncloud.
commit eeca726d28272978f3a3ce425edd28a09556ce54
Author: Robin Appelman <icewind at owncloud.com>
Date: Tue Jun 10 15:42:37 2014 +0200
remove unused argument
---
lib/private/files/cache/scanner.php | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php
index afbf69f..abba659 100644
--- a/lib/private/files/cache/scanner.php
+++ b/lib/private/files/cache/scanner.php
@@ -94,10 +94,9 @@ class Scanner extends BasicEmitter {
*
* @param string $file
* @param int $reuseExisting
- * @param bool $parentExistsInCache
- * @return array with 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)
and !Filesystem::isFileBlacklisted($file)
) {
@@ -248,7 +247,7 @@ class Scanner extends BasicEmitter {
if (!Filesystem::isIgnoredDir($file)) {
$newChildren[] = $file;
try {
- $data = $this->scanFile($child, $reuse, true);
+ $data = $this->scanFile($child, $reuse);
if ($data) {
if ($data['mimetype'] === 'httpd/unix-directory' and $recursive === self::SCAN_RECURSIVE) {
$childQueue[] = $child;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list