You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/12/09 22:39:56 UTC

[lucy-commits] svn commit: r1212652 - /incubator/lucy/trunk/perl/lib/Lucy.pm

Author: marvin
Date: Fri Dec  9 21:39:56 2011
New Revision: 1212652

URL: http://svn.apache.org/viewvc?rev=1212652&view=rev
Log:
LUCY-187 Disconnect VTable's perl-space DESTROY.

Modified:
    incubator/lucy/trunk/perl/lib/Lucy.pm

Modified: incubator/lucy/trunk/perl/lib/Lucy.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/lib/Lucy.pm?rev=1212652&r1=1212651&r2=1212652&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/lib/Lucy.pm (original)
+++ incubator/lucy/trunk/perl/lib/Lucy.pm Fri Dec  9 21:39:56 2011
@@ -199,6 +199,9 @@ sub error {$Lucy::Object::Err::error}
             push @{"$singleton_class\::ISA"}, $parent_class;
         }
     }
+
+    no warnings 'redefine';
+    sub DESTROY { }    # leak all
 }
 
 {