Author: kwilliams
Date: Wed May 3 17:55:22 2006
New Revision: 6017
Modified:
Module-Build/trunk/lib/Module/Build/Base.pm
Log:
Replace a vestigial 'next' with a 'return' now that it's in a subroutine, not a loop.
Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Wed May 3 17:55:22 2006
@@ -2503,7 +2503,7 @@
my $pods = $self->_find_pods( $self->{properties}{"${type}doc_dirs"},
exclude => [ qr/\.(?:bat|com|html)$/ ] );
- next unless %$pods; # nothing to do
+ return unless %$pods; # nothing to do
unless ( -d $htmldir ) {
File::Path::mkpath($htmldir, 0, 0755)
|