X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FAccessor%2FNative%2FString%2Freplace.pm;h=653ed82e320afb164d32f952892e6302bd8e07e9;hb=7f5ec80d99caad6df365a018719f875465358f17;hp=f3600805cc60f24971a6dd49c891fdbaa4c5732a;hpb=88e88a7b2cfdf5d777f502a34cfbf5ba69809c58;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm b/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm index f360080..653ed82 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm @@ -6,7 +6,7 @@ use warnings; use Moose::Util (); use Params::Util (); -our $VERSION = '1.14'; +our $VERSION = '1.15'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -21,7 +21,7 @@ with 'Moose::Meta::Method::Accessor::Native::Writer' => { _inline_optimized_set_new_value ) ] -}; + }; sub _minimum_arguments { 1 } @@ -33,10 +33,10 @@ sub _inline_check_arguments { return $self->_inline_throw_error( q{'The first argument passed to replace must be a string or regexp reference'} ) - . q{ unless Moose::Util::_STRINGLIKE( $_[0] ) || Params::Util::_REGEX( $_[0] );} + . q{ unless Moose::Util::_STRINGLIKE0( $_[0] ) || Params::Util::_REGEX( $_[0] );} . $self->_inline_throw_error( q{'The second argument passed to replace must be a string or code reference'} - ) . q{ unless Moose::Util::_STRINGLIKE( $_[1] ) || Params::Util::_CODELIKE( $_[1] );}; + ) . q{ unless Moose::Util::_STRINGLIKE0( $_[1] ) || Params::Util::_CODELIKE( $_[1] );}; } sub _potential_value {