From: Jesse Luehrs Date: Fri, 2 Apr 2010 22:30:53 +0000 (-0500) Subject: remove obsolete comment X-Git-Tag: 1.05~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=31cf7b20f012680b0b48de60c998655fe7537606;p=gitmo%2FMoose.git remove obsolete comment --- diff --git a/lib/Moose/Meta/Class.pm b/lib/Moose/Meta/Class.pm index e383d5e..6eca2e0 100644 --- a/lib/Moose/Meta/Class.pm +++ b/lib/Moose/Meta/Class.pm @@ -528,9 +528,6 @@ sub _fix_class_metaclass_incompatibility { if ($self->_can_fix_class_metaclass_incompatibility_by_role_reconciliation($super_meta)) { my $class_meta_subclass_meta = $self->_reconcile_roles_for_metaclass(blessed($self), blessed($super_meta)); - # XXX: this doesn't work! we're reblessing $self into a subclass of - # $super_meta, not of itself... probably do need to just go ahead and - # reinitialize things here my $new_self = $class_meta_subclass_meta->name->reinitialize( $self->name, );