aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSamantha McVey <samantham@posteo.net>2017-04-24 14:49:30 -0700
committerSamantha McVey <samantham@posteo.net>2017-04-24 14:49:30 -0700
commit40d5898acdbae40c1b74370d5f007756bce4ca52 (patch)
tree48f1b7be9faae2f1e9bbc3e235708113c074433c /lib
parent18e1a1ce36cbecd76f55ee46831a35849711d573 (diff)
Clean up the code some
Diffstat (limited to 'lib')
-rw-r--r--lib/mergehash.pm63
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/mergehash.pm6 b/lib/mergehash.pm6
index 6e84aa8..cc9b9cb 100644
--- a/lib/mergehash.pm6
+++ b/lib/mergehash.pm6
@@ -12,11 +12,9 @@ augment class Hash {
elsif %merge-source{$key} ~~ Positional {
my @a;
for %merge-into{$key}.list {
- say $_;
@a.push: $_;
}
for %merge-source{$key}.list {
- say $_;
@a.push: $_;
}
%merge-into{$key} = @a;
@@ -26,7 +24,6 @@ augment class Hash {
}
}
else {
- note 'source';
%merge-into{$key} = %merge-source{$key};
}
}