projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
bf93015
)
Don't define Mouse::blessed() and Mouse::confess()
Fuji, Goro [Mon, 6 Dec 2010 04:35:55 +0000 (13:35 +0900)]
lib/Mouse.pm
patch
|
blob
|
blame
|
history
lib/Mouse/Role.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Mouse.pm
b/lib/Mouse.pm
index
ceebe19
..
1dc0087
100644
(file)
--- 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
(file)
--- 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 ();