diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-18 16:17:15 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-18 16:35:19 +0200 |
commit | ccf47f40aac167f25b7537b3819b99d6c59bc92e (patch) | |
tree | 3d6529319d53f269241c00d5ef5a15dc57aa91f8 /lib/repair/repairlegacystorages.php | |
parent | 8cb0d97b1099561d7f9a059f3ba8105a2c719aab (diff) | |
download | nextcloud-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/repair/repairlegacystorages.php')
-rw-r--r-- | lib/repair/repairlegacystorages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/repair/repairlegacystorages.php b/lib/repair/repairlegacystorages.php index 7086f2a8d2d..1bc49678f0d 100644 --- a/lib/repair/repairlegacystorages.php +++ b/lib/repair/repairlegacystorages.php @@ -102,7 +102,7 @@ class RepairLegacyStorages extends BasicEmitter { $newNumericId = (int)$newNumericId; // try and resolve the conflict // check which one of "local::" or "home::" needs to be kept - $result = $this->findStorageInCacheStatement->execute(array($oldNumericId, $newNumericId)); + $this->findStorageInCacheStatement->execute(array($oldNumericId, $newNumericId)); $row1 = $this->findStorageInCacheStatement->fetch(); $row2 = $this->findStorageInCacheStatement->fetch(); $this->findStorageInCacheStatement->closeCursor(); |