diff options
author | Robin Appelman <robin@icewind.nl> | 2020-09-15 17:01:33 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2020-09-16 13:49:07 +0200 |
commit | cfde74442c67b9a6e639536536c18e4c6d4f7a0e (patch) | |
tree | c2febb15ec88d7e3480cceac088c4266ba7b34e2 /lib/private/Files/Cache/NullWatcher.php | |
parent | 244fd6ae49dd1712d07bf64d1d27b8cfafe441ad (diff) | |
download | nextcloud-server-cfde74442c67b9a6e639536536c18e4c6d4f7a0e.tar.gz nextcloud-server-cfde74442c67b9a6e639536536c18e4c6d4f7a0e.zip |
optimize View::getPath if we already know the storage id
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Cache/NullWatcher.php')
-rw-r--r-- | lib/private/Files/Cache/NullWatcher.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/private/Files/Cache/NullWatcher.php b/lib/private/Files/Cache/NullWatcher.php index 6ab886f05dc..57e43444fdc 100644 --- a/lib/private/Files/Cache/NullWatcher.php +++ b/lib/private/Files/Cache/NullWatcher.php @@ -27,7 +27,6 @@ class NullWatcher extends Watcher { private $policy; public function __construct() { - } public function setPolicy($policy) { @@ -43,7 +42,6 @@ class NullWatcher extends Watcher { } public function update($path, $cachedData) { - } public function needsUpdate($path, $cachedData) { @@ -51,6 +49,5 @@ class NullWatcher extends Watcher { } public function cleanFolder($path) { - } } |