X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FView.pm;h=1959a77729c323f2bb05ef35ce48592a81007109;hb=b21bc4683a90d1d69b295b51472b95b269fb0ad5;hp=6c41dd613a3647a99465a0118dfac48432f9f525;hpb=0bf7ab7160f4f2fd0f00cd3d53ac311e9ad50241;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/View.pm b/lib/Catalyst/View.pm index 6c41dd6..1959a77 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 @@ -46,12 +46,6 @@ sub process { } -=head2 $c->merge_hash_config( $hashref, $hashref ) - -Merges two hashes together recursively, giving right-hand precedence. - -=cut - =head1 AUTHORS Catalyst Contributors, see Catalyst.pm @@ -63,4 +57,7 @@ the same terms as Perl itself. =cut +no Moose; +__PACKAGE__->meta->make_immutable(); + 1;