From: Fuji, Goro Date: Wed, 29 Sep 2010 04:06:43 +0000 (+0900) Subject: Comments X-Git-Tag: 0.77~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9293fc9987237cca0e0072c9f9d670ea0ba3e47b;p=gitmo%2FMouse.git Comments --- diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index be95702..27a48db 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -78,9 +78,7 @@ sub verify_superclass { # The metaclass of $super is not initialized. # i.e. it might be Mouse::Object, a mixin package (e.g. Exporter), # or a foreign class including Moose classes. - - # checks if $super is a foreign class (i.e. non-Mouse class) - # see also Mouse::Foreign::Meta::Role::Class + # See also Mouse::Foreign::Meta::Role::Class. my $mm = $super->can('meta'); if(!($mm && $mm == \&Mouse::Util::meta)) { if($super->can('new') or $super->can('DESTROY')) {