diff options
author | ringmaster <epithet@gmail.com> | 2014-05-27 09:31:20 -0400 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-04 07:55:44 +0200 |
commit | 896bc526e69e060eac95d2fad62e3386250b5908 (patch) | |
tree | c0e6e072f17d200d3d80d782787b9dbf14358748 /lib | |
parent | 6b94732bdfdc59836968240e0f4682b964a5253a (diff) | |
download | nextcloud-server-896bc526e69e060eac95d2fad62e3386250b5908.tar.gz nextcloud-server-896bc526e69e060eac95d2fad62e3386250b5908.zip |
Remove unused methods.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/storage/local.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 565f9202d5c..e33747bbd52 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -279,19 +279,5 @@ if (\OC_Util::runningOnWindows()) { public function isLocal() { return true; } - - /** - * Acquire a lock on a file - */ - public function getLock($path, $lockType) { - return true; - } - - /** - * Release an existing lock - */ - public function releaseLock($path) { - return true; - } } } |