diff options
author | Brion Vibber <brion@pobox.com> | 2009-12-30 16:42:57 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-12-30 16:42:57 -0800 |
commit | 89cca01259d71f3da961ef64def3647f86a01567 (patch) | |
tree | 1e96398699eb8048c77b8e0ae5c429aa0b98e853 /classes | |
parent | ff50c2b91d9fadaa9a4ede11785408408fc2d3c5 (diff) |
Take Memcached_DataObject destructor back out to check whether it might be causing some under-the-hood problems.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Memcached_DataObject.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index d8b0db5a6..644b84d5c 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -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)) { |