]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/cache/class_MemoryCache.php
Copyright updated
[core.git] / inc / classes / main / cache / class_MemoryCache.php
index c3e24cc16f77fbf0878d404ca4b39c3cf03496f8..ba2cb773d1975bfdccfcb91ecc816bf91a7d9166 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -67,7 +67,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
         * Does the specified offset exist in cache?
         *
         * @param       $offset         The offset we are looking for
-        * @return      $exists         Wether the offset exists
+        * @return      $exists         Whether the offset exists
         */
        public function offsetExists ($offset) {
                $exists = $this->dataCache->offsetExists($offset);
@@ -115,7 +115,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                // Is the offset there?
                if ($this->offsetExists($offset)) {
                        // Purge only existing keys
-                       /* DEBUG: */ $this->debugOutput('CACHE: Unsetting cache ' . $offset);
+                       //* DEBUG: */ $this->debugOutput('CACHE: Unsetting cache ' . $offset);
                        $this->dataCache->offsetUnset($offset);
                } // END - if
        }