* i18n/L10n updates.
* remove superfluous whitespace.
This commit is contained in:
@@ -48,7 +48,6 @@ if (!defined('STATUSNET')) {
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class MemcachePlugin extends Plugin
|
||||
{
|
||||
static $cacheInitialized = false;
|
||||
@@ -70,7 +69,6 @@ class MemcachePlugin extends Plugin
|
||||
*
|
||||
* @return boolean flag value
|
||||
*/
|
||||
|
||||
function onInitializePlugin()
|
||||
{
|
||||
if (self::$cacheInitialized) {
|
||||
@@ -101,7 +99,6 @@ class MemcachePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook success
|
||||
*/
|
||||
|
||||
function onStartCacheGet(&$key, &$value)
|
||||
{
|
||||
$this->_ensureConn();
|
||||
@@ -121,7 +118,6 @@ class MemcachePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook success
|
||||
*/
|
||||
|
||||
function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
|
||||
{
|
||||
$this->_ensureConn();
|
||||
@@ -160,7 +156,6 @@ class MemcachePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook success
|
||||
*/
|
||||
|
||||
function onStartCacheDelete(&$key, &$success)
|
||||
{
|
||||
$this->_ensureConn();
|
||||
@@ -194,7 +189,6 @@ class MemcachePlugin extends Plugin
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
private function _ensureConn()
|
||||
{
|
||||
if (empty($this->_conn)) {
|
||||
@@ -253,4 +247,3 @@ class MemcachePlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user