Skip to content

Commit

Permalink
MDL-36357 cache: removed double semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed Jan 8, 2013
1 parent f44e7d0 commit 086e78d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cache/classes/factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static function instance($forcereload = false) {
self::$instance = new cache_factory();
if (defined('CACHE_DISABLE_STORES') && CACHE_DISABLE_STORES !== false) {
// The cache stores have been disabled.
self::$instance->set_state(self::STATE_STORES_DISABLED);;
self::$instance->set_state(self::STATE_STORES_DISABLED);
}
}
}
Expand Down Expand Up @@ -469,4 +469,4 @@ public static function disable_stores() {
$factory = self::instance();
$factory->set_state(self::STATE_STORES_DISABLED);
}
}
}

0 comments on commit 086e78d

Please sign in to comment.