Merge branch 'topic/unified-method-generation-w-xs' of gitmo@moose.perl.org:Class...
gfx [Mon, 31 Aug 2009 11:37:21 +0000 (20:37 +0900)]
Conflicts:
lib/Class/MOP/Instance.pm
lib/Class/MOP/Method/Accessor.pm

1  2 
lib/Class/MOP/Instance.pm

@@@ -75,7 -75,15 +75,6 @@@ sub _class_name { $_[0]->{_class_name} 
  #    bless {}, $self->_class_name;
  #}
  
 -# for compatibility
 -sub bless_instance_structure {
 -    Carp::cluck('The bless_instance_structure method is deprecated.'
 -        . " It will be removed in a future release.\n");
 -
 -    my ($self, $instance_structure) = @_;
 -    bless $instance_structure, $self->_class_name;
 -}
 -
  sub clone_instance {
      my ($self, $instance) = @_;
      bless { %$instance }, $self->_class_name;