]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Take Memcached_DataObject destructor back out to check whether it might be causing...
authorBrion Vibber <brion@pobox.com>
Thu, 31 Dec 2009 00:42:57 +0000 (16:42 -0800)
committerBrion Vibber <brion@pobox.com>
Thu, 31 Dec 2009 00:42:57 +0000 (16:42 -0800)
classes/Memcached_DataObject.php

index d8b0db5a69b7e1363a5487e6272050175d57f97d..644b84d5cf64317dfea648edfa09d4dd6dd86578 100644 (file)
@@ -23,20 +23,6 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
 
 class Memcached_DataObject extends DB_DataObject
 {
-    /**
-     * Destructor to free global memory resources associated with
-     * this data object when it's unset or goes out of scope.
-     * DB_DataObject doesn't do this yet by itself.
-     */
-
-    function __destruct()
-    {
-        $this->free();
-        if (method_exists('DB_DataObject', '__destruct')) {
-            parent::__destruct();
-        }
-    }
-
     function &staticGet($cls, $k, $v=null)
     {
         if (is_null($v)) {