Skip to content

Commit

Permalink
♻️ to improve coverage #52
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Nov 30, 2022
1 parent 23f750a commit f0dd4ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/URI.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ class Authority {
}

multi method gist(Authority:D: --> Str ) {
my $authority = '';
$authority ~= "$!userinfo@" if $!userinfo;
my $authority = "$!userinfo@" if $!userinfo;
$authority ~= $!host;
$authority ~= ":$!port" if $!port;
$authority;
Expand Down

0 comments on commit f0dd4ae

Please sign in to comment.