From: miker Date: Thu, 23 Sep 2010 04:33:39 +0000 (+0000) Subject: Have the CStoreEditor grow a DESTROY X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e493440ddcf7af52f71058f413d8ed784ff7d682;p=evergreen%2Fbjwebb.git Have the CStoreEditor grow a DESTROY git-svn-id: svn://svn.open-ils.org/ILS/trunk@17912 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm b/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm index 89ccfa6c1..178818647 100644 --- a/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm @@ -76,6 +76,11 @@ sub new { return $self; } +sub DESTROY { + my $self = shift; + $self->reset; + return undef; +} sub app { my( $self, $app ) = @_;