From: Aaron Schulz Date: Tue, 13 Aug 2019 05:47:42 +0000 (-0700) Subject: objectcache: Remove lock()/unlock() stubs from MemcachedClient X-Git-Tag: 1.34.0-rc.0~641^2 X-Git-Url: http://git.cyclocoop.org/data/%27%20.%20mediabox_timestamp%28find_in_path%28%27javascript/jquery.colorbox.js%27%29%29%20.%20%27?a=commitdiff_plain;h=5e7829e08f69f02bc466a0e7013968b6496f0abc;p=lhc%2Fweb%2Fwiklou.git objectcache: Remove lock()/unlock() stubs from MemcachedClient Change-Id: I56628957b16d91cfa9b79b07abdece17fb396577 --- 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()