X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FView.pm;h=4c0756293467750c2d148644e1922ff094048e28;hb=6d62355b6e08f1234fefbdebaacc9ced07b0bc6c;hp=11a216f9f263d16bb8ccd83b18748428da80ebec;hpb=6323fda2e7ace0fc0aa06305c674957cedc6d025;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/View.pm b/lib/Catalyst/View.pm index 11a216f..4c07562 100644 --- a/lib/Catalyst/View.pm +++ b/lib/Catalyst/View.pm @@ -1,7 +1,7 @@ package Catalyst::View; use Moose; -extends 'Catalyst::Component'; +extends qw/Catalyst::Component/; =head1 NAME @@ -46,22 +46,18 @@ sub process { } -=head2 $c->merge_hash_config( $hashref, $hashref ) +=head1 AUTHORS -Merges two hashes together recursively, giving right-hand precedence. - -=cut - -=head1 AUTHOR - -Sebastian Riedel, C -Marcus Ramberg, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut +no Moose; +__PACKAGE__->meta->make_immutable(); + 1;