summaryrefslogtreecommitdiffstats
path: root/lib/public/files.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-04-18 16:17:15 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-04-18 16:35:19 +0200
commitccf47f40aac167f25b7537b3819b99d6c59bc92e (patch)
tree3d6529319d53f269241c00d5ef5a15dc57aa91f8 /lib/public/files.php
parent8cb0d97b1099561d7f9a059f3ba8105a2c719aab (diff)
downloadnextcloud-server-ccf47f40aac167f25b7537b3819b99d6c59bc92e.tar.gz
nextcloud-server-ccf47f40aac167f25b7537b3819b99d6c59bc92e.zip
Remove unused variables
* should make scrutinizer a lot more happy * reduces maybe memory footprint
Diffstat (limited to 'lib/public/files.php')
-rw-r--r--lib/public/files.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/files.php b/lib/public/files.php
index 57747a4c354..5de7f242976 100644
--- a/lib/public/files.php
+++ b/lib/public/files.php
@@ -81,7 +81,7 @@ class Files {
* @since 5.0.0
*/
public static function streamCopy( $source, $target ) {
- list($count, $result) = \OC_Helper::streamCopy( $source, $target );
+ list($count, ) = \OC_Helper::streamCopy( $source, $target );
return $count;
}