Mouse::Util::blessed
[gitmo/Mouse.git] / lib / Mouse / Meta / Class.pm
index 796872a..73264d1 100644 (file)
@@ -3,10 +3,9 @@ package Mouse::Meta::Class;
 use strict;
 use warnings;
 
-use Scalar::Util 'blessed';
+use Mouse::Util qw/get_linear_isa blessed/;
 use Carp 'confess';
 
-use MRO::Compat;
 use Class::Method::Modifiers ();
 
 do {
@@ -94,7 +93,7 @@ sub get_attribute_map { $_[0]->{attributes} }
 sub has_attribute     { exists $_[0]->{attributes}->{$_[1]} }
 sub get_attribute     { $_[0]->{attributes}->{$_[1]} }
 
-sub linearized_isa { @{ mro::get_linear_isa($_[0]->name) } }
+sub linearized_isa { @{ get_linear_isa($_[0]->name) } }
 
 sub clone_object {
     my $class    = shift;