From e14f908dabe165e5a49b21c4caed7920c7a31886 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 31 Jan 2020 16:45:55 +0100 Subject: [PATCH] Bug 18936: (follow-up) More fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previous "More fixes" patch added a debugging statement, not needed. Signed-off-by: Joonas Kylmälä --- Koha/CirculationRules.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Koha/CirculationRules.pm b/Koha/CirculationRules.pm index 3e54740097..c26f572d12 100644 --- a/Koha/CirculationRules.pm +++ b/Koha/CirculationRules.pm @@ -183,9 +183,8 @@ sub get_effective_rule { my $itemtype = $params->{itemtype}; my $branchcode = $params->{branchcode}; - my @c = caller; Koha::Exceptions::MissingParameter->throw( - "Required parameter 'rule_name' missing" . "@c") + "Required parameter 'rule_name' missing") unless $rule_name; for my $v ( $branchcode, $categorycode, $itemtype ) { -- 2.11.0