X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FAccessor%2FNative%2FHash%2Fclear.pm;h=4ba8fb91476f74f6eb1c0d97a91f85840532a5e8;hb=ee05962b4ec91f86a0dc19ceddb869ca4e609a67;hp=08dc8a3e16ed2a76450bb8fcb2902dc1c7560201;hpb=53a4677c8ac29f814924cd2eb21a760b10bf7f5d;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm index 08dc8a3..4ba8fb9 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm @@ -3,36 +3,24 @@ package Moose::Meta::Method::Accessor::Native::Hash::clear; use strict; use warnings; -our $VERSION = '1.19'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use Moose::Role; -with 'Moose::Meta::Method::Accessor::Native::Hash::Writer' => { - -excludes => [ - qw( - _maximum_arguments - _optimized_set_new_value - _return_value - ) - ] -}; +with 'Moose::Meta::Method::Accessor::Native::Hash::Writer'; sub _maximum_arguments { 0 } sub _adds_members { 0 } -sub _potential_value { return '{}' } +sub _potential_value { '{}' } -sub _optimized_set_new_value { +sub _inline_optimized_set_new_value { my $self = shift; my ($inv, $new, $slot_access) = @_; - return $slot_access . ' = {}'; + return $slot_access . ' = {};'; } -sub _return_value { return '' } +sub _return_value { '' } no Moose::Role;