X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FModel.pm;h=05c913f369f2582156328b91c3209fe7c8e86da8;hb=df3956bf69b7112ca1064d187b6313182a6b8902;hp=20ae37c6bd7c174b5824720ca9d175683d7d23ff;hpb=6f1f968a6bc42bf4a4b50a1ee22d3aaecd801876;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Model.pm b/lib/Catalyst/Model.pm index 20ae37c..05c913f 100644 --- a/lib/Catalyst/Model.pm +++ b/lib/Catalyst/Model.pm @@ -1,15 +1,10 @@ package Catalyst::Model; -use MRO::Compat; -use mro 'c3'; use Moose; extends qw/Catalyst::Component/; no Moose; -#We can't immutablize anything that ISA Component just yet -#__PACKAGE__->meta->make_immutable(); - =head1 NAME Catalyst::Model - Catalyst Model base class @@ -27,9 +22,9 @@ Catalyst Model base class. Implements the same methods as other Catalyst components, see L -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -38,4 +33,6 @@ the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;