X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FView.pm;h=7ff04509331810c793b70ea8fa945aaa12929c4f;hb=4ac0b9cb8e9043db8a95f44af685c782bf9426e7;hp=40ed7241b2c7776ffaea60e4a6fc3d9bc02905da;hpb=a8762dd4f8ea1338b9b45ecf37c0107f2710d398;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/View.pm b/lib/Catalyst/View.pm index 40ed724..7ff0450 100644 --- a/lib/Catalyst/View.pm +++ b/lib/Catalyst/View.pm @@ -1,7 +1,7 @@ package Catalyst::View; -use strict; -use base qw/Catalyst::Component/; +use Moose; +extends qw/Catalyst::Component/; =head1 NAME @@ -52,10 +52,9 @@ Merges two hashes together recursively, giving right-hand precedence. =cut -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Marcus Ramberg, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -64,4 +63,7 @@ the same terms as Perl itself. =cut +no Moose; +__PACKAGE__->meta->make_immutable(); + 1;