Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove redundant conditional
  • Loading branch information
skids committed Jul 1, 2015
1 parent 1c9ad4f commit 6e8c751
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/core/Parameter.pm
Expand Up @@ -260,11 +260,8 @@ my class Parameter { # declared in BOOTSTRAP
and not $rest
and nqp::isnull($!post_constraints)
and not $default
and nqp::isnull($!sub_signature)
{
if $name eq '$' and not $rest {
and nqp::isnull($!sub_signature) {
$name = '\\';
}
}
if $name.substr(0,1) ne '\\' {
$rest ~= ' is parcel';
Expand Down

0 comments on commit 6e8c751

Please sign in to comment.