Use dzil Authority plugin - remove $AUTHORITY from code
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / clear.pm
index 1b05915..6ebd375 100644 (file)
@@ -3,10 +3,6 @@ package Moose::Meta::Method::Accessor::Native::Array::clear;
 use strict;
 use warnings;
 
-our $VERSION = '1.15';
-$VERSION = eval $VERSION;
-our $AUTHORITY = 'cpan:STEVAN';
-
 use Moose::Role;
 
 with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => {
@@ -23,15 +19,16 @@ 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 { return q{} }
+sub _return_value { '' }
 
 no Moose::Role;