Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oops, Parcels are immutable
  • Loading branch information
lizmat committed Apr 23, 2014
1 parent fcedf60 commit 375404d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/SupplyOperations.pm
Expand Up @@ -148,7 +148,7 @@ my class SupplyOperations is repr('Uninstantiable') {
}
}
else {
@seen.push: ($target, $now+$expires);
@seen.push: [$target, $now+$expires];
$res.more(val);
}
}
Expand All @@ -163,7 +163,7 @@ my class SupplyOperations is repr('Uninstantiable') {
}
}
else {
@seen.push: (val, $now+$expires);
@seen.push: [val, $now+$expires];
$res.more(val);
}
};
Expand Down

0 comments on commit 375404d

Please sign in to comment.