make github the primary repository
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Hash / clear.pm
index 57e2d31..4ba8fb9 100644 (file)
@@ -3,22 +3,25 @@ package Moose::Meta::Method::Accessor::Native::Hash::clear;
 use strict;
 use warnings;
 
-our $VERSION = '1.14';
-$VERSION = eval $VERSION;
-our $AUTHORITY = 'cpan:STEVAN';
+use Moose::Role;
 
-use base 'Moose::Meta::Method::Accessor::Native::Hash::Writer';
+with 'Moose::Meta::Method::Accessor::Native::Hash::Writer';
 
 sub _maximum_arguments { 0 }
 
 sub _adds_members { 0 }
 
-sub _potential_value { return '{}' }
+sub _potential_value { '{}' }
 
 sub _inline_optimized_set_new_value {
-    my ( $self, $inv, $new, $slot_access ) = @_;
+    my $self = shift;
+    my ($inv, $new, $slot_access) = @_;
 
-    return "$slot_access = {};";
+    return $slot_access . ' = {};';
 }
 
+sub _return_value { '' }
+
+no Moose::Role;
+
 1;