From: Simon Elliott Date: Fri, 20 May 2011 09:30:11 +0000 (+0100) Subject: add DESTROY methods to fix 5.14 noticing them being missing. X-Git-Tag: allocate~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FHTML-Zoom.git;a=commitdiff_plain;h=93f730288a1ce559e7d23080085e7cc4e0ea7e1d add DESTROY methods to fix 5.14 noticing them being missing. --- diff --git a/lib/HTML/Zoom.pm b/lib/HTML/Zoom.pm index 1cb15de..596b862 100644 --- a/lib/HTML/Zoom.pm +++ b/lib/HTML/Zoom.pm @@ -174,6 +174,8 @@ sub _do { } } +sub DESTROY {} + 1; =head1 NAME diff --git a/lib/HTML/Zoom/StreamBase.pm b/lib/HTML/Zoom/StreamBase.pm index ae5374c..1293458 100644 --- a/lib/HTML/Zoom/StreamBase.pm +++ b/lib/HTML/Zoom/StreamBase.pm @@ -117,4 +117,6 @@ sub _do { return $self->select($selector)->$meth(@args); } +sub DESTROY {} + 1;