Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Always just use .gist to create the final .gist
As suggested by Moritz++
  • Loading branch information
lizmat committed May 21, 2013
1 parent 1dace73 commit 7869a67
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/core/List.pm
Expand Up @@ -340,9 +340,7 @@ my class List does Positional {
}
}

multi method gist(List:D:) {
join ' ', map { $_.defined ?? $_.gist !! $_.perl }, @(self)
}
multi method gist(List:D:) { join ' ', map { $_.gist }, @(self) }
multi method perl(List:D \SELF:) {
self.gimme(*);
self.Parcel.perl ~ '.list'
Expand Down

0 comments on commit 7869a67

Please sign in to comment.