convert the rest of the simple readers in cmop to xs
[gitmo/Class-MOP.git] / lib / Class / MOP / Mixin / HasAttributes.pm
index c83a876..eed360b 100644 (file)
@@ -3,7 +3,7 @@ package Class::MOP::Mixin::HasAttributes;
 use strict;
 use warnings;
 
-our $VERSION   = '1.10';
+our $VERSION   = '1.11';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -12,9 +12,6 @@ use Scalar::Util 'blessed';
 
 use base 'Class::MOP::Mixin';
 
-sub _attribute_map      { $_[0]->{'attributes'} }
-sub attribute_metaclass { $_[0]->{'attribute_metaclass'} }
-
 sub add_attribute {
     my $self = shift;