Minahito
minah****@users*****
2006年 10月 14日 (土) 23:51:50 JST
Index: xoops2jp/html/core/XCube_Root.class.php diff -u xoops2jp/html/core/XCube_Root.class.php:1.1.2.2 xoops2jp/html/core/XCube_Root.class.php:1.1.2.3 --- xoops2jp/html/core/XCube_Root.class.php:1.1.2.2 Sat Oct 14 23:42:30 2006 +++ xoops2jp/html/core/XCube_Root.class.php Sat Oct 14 23:51:50 2006 @@ -1,7 +1,7 @@ <?php /** * @package XCube - * @version $Id: XCube_Root.class.php,v 1.1.2.2 2006/10/14 14:42:30 minahito Exp $ + * @version $Id: XCube_Root.class.php,v 1.1.2.3 2006/10/14 14:51:50 minahito Exp $ */ require_once XOOPS_ROOT_PATH . "/core/XCube_HttpContext.class.php"; @@ -283,22 +283,6 @@ } /** - * Return the instance of the cache system. The instance of cache system - * is singleton in XOOPS Cube. This member function is getInstance() at - * singleton pattern. - * - * @return XCube_CacheSystem - */ - function &getCacheSystem() - { - if (!is_object($this->mCacheSystem)) { - $this->mCacheSystem =& $this->_createInstance($this->mSiteConfig['Cube']['CacheSystem.class'], $this->mSiteConfig['Cube']['CacheSystem.path']); - } - - return $this->mCacheSystem; - } - - /** * Return the instance of the render system by the name. If the render * system specified by $name doesn't exist, raise fatal error. This member * function does creating the instance and calling prepare().