From: Fuji, Goro Date: Mon, 6 Dec 2010 04:35:55 +0000 (+0900) Subject: Don't define Mouse::blessed() and Mouse::confess() X-Git-Tag: 0.89~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=590e40d8d76ceb0ee30bbd2ea9e679701bb1280a;hp=bf930151b4de06afa74071330a5d841ad0bcedfa Don't define Mouse::blessed() and Mouse::confess() --- diff --git a/lib/Mouse.pm b/lib/Mouse.pm index ceebe19..1dc0087 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -5,8 +5,8 @@ use Mouse::Exporter; # enables strict and warnings our $VERSION = '0.88'; -use Carp qw(confess); -use Scalar::Util qw(blessed); +use Carp (); +use Scalar::Util (); use Mouse::Util (); diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 25926ad..fd1a5f0 100644 --- a/lib/Mouse/Role.pm +++ b/lib/Mouse/Role.pm @@ -3,8 +3,8 @@ use Mouse::Exporter; # enables strict and warnings our $VERSION = '0.88'; -use Carp qw(confess); -use Scalar::Util qw(blessed); +use Carp (); +use Scalar::Util (); use Mouse ();