Skip to content

Commit

Permalink
remove unnecessary ||= and replace with =
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat committed Mar 6, 2013
1 parent f365a0d commit 5c89616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Plack/Request.pm
Expand Up @@ -100,7 +100,7 @@ sub query_parameters {
split(/\+/, $query_string, -1);
}
}
$env->{'plack.request.query'} ||= Hash::MultiValue->new(@query);
$env->{'plack.request.query'} = Hash::MultiValue->new(@query);
}

sub content {
Expand Down

0 comments on commit 5c89616

Please sign in to comment.