From 5ea78fe9f348cd1c63537169945799ad45fd4a22 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 19 Aug 2022 11:00:42 -0300 Subject: [PATCH] Bug 30941: (QA follow-up) Only export what is needed Signed-off-by: Tomas Cohen Arazi --- Koha/CodeList/Unimarc/MediumOfPerformance.pm | 23 +++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/Koha/CodeList/Unimarc/MediumOfPerformance.pm b/Koha/CodeList/Unimarc/MediumOfPerformance.pm index e839ec02a0..99e200040b 100644 --- a/Koha/CodeList/Unimarc/MediumOfPerformance.pm +++ b/Koha/CodeList/Unimarc/MediumOfPerformance.pm @@ -18,7 +18,28 @@ package Koha::CodeList::Unimarc::MediumOfPerformance; use Modern::Perl; use utf8; -use Koha::I18N qw( N__ N__p ); +use Koha::I18N; + +use parent 'Exporter'; +our @EXPORT = qw( + brass + choruses + conductors + electronic + keyboard + misc + number_of_hands_or_keys + orchestras + other + other_performers + other2 + percussion + strings_bowed + strings_plucked + tessitura + voices + woodwinds +); sub voices { return { -- 2.39.5