X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=blobdiff_plain;f=lib%2FApp%2FRgit%2FUtils.pm;h=cfe191dfc69993617ee9650279eb8831e41f83e7;hp=7a4c3b36779a8a4aef2e3949544f8ff5e26d6c57;hb=1c5bf56c6f80e4cd818c341b34ba3410f34ed514;hpb=caf4ff14ac06ea364ea51f725d041fd715e9682f diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 7a4c3b3..cfe191d 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -51,26 +51,8 @@ use constant { CRIT => 0, }; -=head1 FUNCTIONS - -=head2 C - -Sanitize arguments passed to methods. - -=cut - -sub validate { - my $class = shift; - croak 'Optional arguments must be passed as key/value pairs' if @_ % 2; - $class = ref($class) || $class; - $class = caller unless $class; - return $class, @_; -} - =head1 EXPORT -C is only exported on request, either by its name or by the C<'funcs'> tag. - C C, C and C are only exported on request, either by their name or by the C<'codes'> tags. C, C, C and C are only exported on request, either by their name or by the C<'levels'> tags. @@ -81,7 +63,6 @@ use base qw/Exporter/; our @EXPORT = (); our %EXPORT_TAGS = ( - funcs => [ qw/validate/ ], codes => [ qw/SAVE NEXT REDO LAST/ ], levels => [ qw/INFO WARN ERR CRIT/ ], );