From: Dave Rolsky Date: Tue, 16 Sep 2008 13:42:35 +0000 (+0000) Subject: No need to fix metaclass incompat here, it'll be fixed when X-Git-Tag: 0.58~23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f23fd59bac5d145b269341d87a5b3e16c6182603;p=gitmo%2FMoose.git No need to fix metaclass incompat here, it'll be fixed when superclasses is called. --- diff --git a/lib/Moose.pm b/lib/Moose.pm index b639039..aada0a0 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -62,7 +62,6 @@ sub extends { # it is correct, sometimes it can get out # of sync when the classes are being built my $meta = Moose::Meta::Class->initialize($class); - $meta->_fix_metaclass_incompatibility(@supers); $meta->superclasses(@supers); }