From 5e7829e08f69f02bc466a0e7013968b6496f0abc Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 12 Aug 2019 22:47:42 -0700 Subject: [PATCH] objectcache: Remove lock()/unlock() stubs from MemcachedClient Change-Id: I56628957b16d91cfa9b79b07abdece17fb396577 --- includes/libs/objectcache/MemcachedClient.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/includes/libs/objectcache/MemcachedClient.php b/includes/libs/objectcache/MemcachedClient.php index eecf7ec799..2c4085433e 100644 --- a/includes/libs/objectcache/MemcachedClient.php +++ b/includes/libs/objectcache/MemcachedClient.php @@ -417,25 +417,6 @@ class MemcachedClient { return false; } - /** - * @param string $key - * @param int $timeout - * @return bool - */ - public function lock( $key, $timeout = 0 ) { - /* stub */ - return true; - } - - /** - * @param string $key - * @return bool - */ - public function unlock( $key ) { - /* stub */ - return true; - } - // }}} // {{{ disconnect_all() -- 2.20.1