Don't define Mouse::blessed() and Mouse::confess()
Fuji, Goro [Mon, 6 Dec 2010 04:35:55 +0000 (13:35 +0900)]
lib/Mouse.pm
lib/Mouse/Role.pm

index ceebe19..1dc0087 100644 (file)
@@ -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 ();
 
index 25926ad..fd1a5f0 100644 (file)
@@ -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 ();