summaryrefslogtreecommitdiffstats
path: root/lib/App/ArchLinux/PackagerTools/Cache.pm
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2018-12-17 16:33:25 +0100
committerFlorian Pritz <bluewind@xinu.at>2018-12-17 16:33:25 +0100
commitf2b5d9bacf8e109fe27cea8f68232d41fd3b3ea5 (patch)
tree6f56fe0013bc8cb43d53a162f030adbf797af850 /lib/App/ArchLinux/PackagerTools/Cache.pm
parent20e07437f413e338f2b54447133e1533f5262c13 (diff)
downloadApp-ArchLinux-PackagerTools-f2b5d9bacf8e109fe27cea8f68232d41fd3b3ea5.tar.gz
App-ArchLinux-PackagerTools-f2b5d9bacf8e109fe27cea8f68232d41fd3b3ea5.tar.xz
Make context parameter explicit
This prevents a loop in $deps->{..}->{context} which is 1) unnecessary and 2) potentially breaks memory recovery when things get deleted. Not the case right now, but whatever. Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib/App/ArchLinux/PackagerTools/Cache.pm')
-rw-r--r--lib/App/ArchLinux/PackagerTools/Cache.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/App/ArchLinux/PackagerTools/Cache.pm b/lib/App/ArchLinux/PackagerTools/Cache.pm
index b8415ad..6d5bec3 100644
--- a/lib/App/ArchLinux/PackagerTools/Cache.pm
+++ b/lib/App/ArchLinux/PackagerTools/Cache.pm
@@ -31,13 +31,13 @@ Returns a new instance.
=cut
-method new($class: $deps = {}) {
- $deps->{config} //= App::ArchLinux::PackagerTools::Config->new({$deps->%{context}});
- return $class->new_no_defaults($deps);
+method new($class: $context, $deps = {}) {
+ $deps->{config} //= App::ArchLinux::PackagerTools::Config->new($context);
+ return $class->new_no_defaults($context, $deps);
}
-method new_no_defaults($class: $deps = {}) {
- return $deps->{context}->{$class} if defined $deps->{context}->{$class};
+method new_no_defaults($class: $context, $deps = {}) {
+ return $context->{$class} if defined $context->{$class};
my $self = {};
bless $self, $class;
@@ -50,7 +50,7 @@ method new_no_defaults($class: $deps = {}) {
root_dir => $config->{cache}->{root_dir},
cache_size => $config->{cache}->{cache_size},
);
- $deps->{context}->{$class} = $self;
+ $context->{$class} = $self;
return $self;
}