Subject: | Magic 5.80 handwave not needed. |
MRO::Compat's next::method works just fine in Catalyst 5.70.
This entire handwave (and other associated code) is redundant as it's
solving a problem which doesn't exist:
BEGIN {
if( $Catalyst::VERSION >= 5.8 ) {
MRO::Compat->use or die "can not use MRO::Compat : $!\n";
}
else {
NEXT->use or die "can not use NEXT : $!\n";
}
};