From: Shawn M Moore Date: Sat, 7 Mar 2009 00:06:14 +0000 (+0000) Subject: No real reason for MOUSE_DEBUG these days X-Git-Tag: 0.19~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=2bc93d688b465f6b707f9679392e10089b611944 No real reason for MOUSE_DEBUG these days --- diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 67c1e77..6278e3d 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -6,14 +6,6 @@ use base 'Exporter'; our $VERSION = '0.18'; -BEGIN { - if ($ENV{MOUSE_DEBUG}) { - *DEBUG = sub (){ 1 }; - } else { - *DEBUG = sub (){ 0 }; - } -} - use Carp 'confess'; use Scalar::Util 'blessed'; use Mouse::Util;