Removing extra call to unset().

This commit is contained in:
Mark Story 2010-04-18 00:53:52 -04:00
parent ca8110ad32
commit 8ea4475ac3

View file

@ -156,8 +156,7 @@ class Cache {
if (!isset(self::$_config[$name])) {
return false;
}
unset(self::$_config[$name]);
unset(self::$_engines[$name]);
unset(self::$_config[$name], self::$_engines[$name]);
return true;
}