summaryrefslogtreecommitdiffstats
path: root/lib/filecache
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-08-29 08:38:33 +0200
committerBart Visscher <bartv@thisnet.nl>2012-08-29 20:28:45 +0200
commit52f2e7112ea985203eca16aa787bd75a7cf92194 (patch)
tree1d1f5070b050652940847c569b1d3968bdae082c /lib/filecache
parent76bc4753e9bd2698415b067108806d82ac56b663 (diff)
downloadnextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.tar.gz
nextcloud-server-52f2e7112ea985203eca16aa787bd75a7cf92194.zip
Whitespace fixes in lib
Diffstat (limited to 'lib/filecache')
-rw-r--r--lib/filecache/cached.php2
-rw-r--r--lib/filecache/update.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php
index 95cc0ac300e..505f1a5e2a0 100644
--- a/lib/filecache/cached.php
+++ b/lib/filecache/cached.php
@@ -12,7 +12,7 @@
*/
class OC_FileCache_Cached{
public static $savedData=array();
-
+
public static function get($path,$root=false){
if($root===false){
$root=OC_Filesystem::getRoot();
diff --git a/lib/filecache/update.php b/lib/filecache/update.php
index 0b5ff8e2446..7b5f18fe5c1 100644
--- a/lib/filecache/update.php
+++ b/lib/filecache/update.php
@@ -42,7 +42,7 @@ class OC_FileCache_Update{
return true;
}
}
-
+
/**
* delete non existing files from the cache
*/
@@ -148,7 +148,7 @@ class OC_FileCache_Update{
}
$mimetype=$view->getMimeType($path);
-
+
$size=0;
$cached=OC_FileCache_Cached::get($path,$root);
$cachedSize=isset($cached['size'])?$cached['size']:0;