Skip to content

Commit

Permalink
Patch by David Wheeler to eliminate a naked qw() warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Figueiredo committed Jun 19, 2011
1 parent 2a18e7f commit fe22ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Net/Amazon/S3/Request/ListBucket.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sub http_request {
my $path = $self->bucket . "/";

my @post;
foreach my $method qw(prefix delimiter max_keys marker) {
foreach my $method ( qw(prefix delimiter max_keys marker) ) {
my $value = $self->$method;
next unless $value;
my $key = $method;
Expand Down

0 comments on commit fe22ac0

Please sign in to comment.