Remove check for items in Memcached cache driver.

This commit is contained in:
Taylor Otwell 2011-07-08 06:45:38 -07:00
parent de19b8db40
commit 6c51536d7d
1 changed files with 0 additions and 5 deletions

View File

@ -28,11 +28,6 @@ public function has($key)
*/
public function get($key)
{
if (array_key_exists($key, $this->items))
{
return $this->items[$key];
}
$cache = \System\Memcached::instance()->get(\System\Config::get('cache.key').$key);
if ($cache === false)