From: André Walker Date: Sun, 22 Jul 2012 20:04:16 +0000 (-0300) Subject: remove useless parameter X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5a6043d01caf0a06c1dbcb9a354424f080a676a0;p=catagits%2FCatalyst-Runtime.git remove useless parameter --- diff --git a/lib/Catalyst/IOC/Container.pm b/lib/Catalyst/IOC/Container.pm index 8a49438..0832f63 100644 --- a/lib/Catalyst/IOC/Container.pm +++ b/lib/Catalyst/IOC/Container.pm @@ -682,7 +682,8 @@ sub _find_component_regexp { # will use is precisely $type, not 'component'. So for now, I'm returning both # services, to decide later what to do. sub get_all_component_services { - my ($self, $class) = @_; + my $self = shift; + my %components; my $components_container = $self->get_sub_container('component');