Merge "mw.ui: button: Update focus state"
[lhc/web/wiklou.git] / includes / objectcache / ReplicatedBagOStuff.php
index 8097308..34affc7 100644 (file)
@@ -26,7 +26,7 @@
  * those that writes go to. This can easily be used with redis for example.
  *
  * In the WAN scenario (e.g. multi-datacenter case), this is useful when
- * writes are rare or usually takes place on the primary datacenter.
+ * writes are rare or they usually take place in the primary datacenter.
  *
  * @ingroup Cache
  * @since 1.25
@@ -119,8 +119,4 @@ class ReplicatedBagOStuff extends BagOStuff {
                $this->mCache->clearLastError();
                $this->sCache->clearLastError();
        }
-
-       protected function cas( $casToken, $key, $value, $exptime = 0 ) {
-               $this->mCache->cas( $casToken, $key, $value, $exptime );
-       }
 }