Bug 21073: (QA follow-up) Remove unused libraries

Signed-off-by: Agustin Moyano <agustinmoyano@theke.io>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Tomás Cohen Arazi 2019-05-02 12:12:10 -03:00 committed by Martin Renvoize
parent 96c0c7d0bd
commit b4088b93a4
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
3 changed files with 2 additions and 3 deletions

View file

@ -20,7 +20,6 @@ package Koha::Plugins;
use Modern::Perl;
use Class::Inspector;
use List::MoreUtils qw( any );
use Module::Load::Conditional qw(can_load);
use Module::Load qw(load);
use Module::Pluggable search_path => ['Koha::Plugin'], except => qr/::Edifact(|::Line|::Message|::Order|::Segment|::Transport)$/;

View file

@ -3539,7 +3539,8 @@ CREATE TABLE patron_consent (
-- Table structure for table 'plugin_data'
--
CREATE TABLE IF NOT EXISTS plugin_methods (
DROP TABLE IF EXISTS plugin_methods;
CREATE TABLE plugin_methods (
plugin_class varchar(255) NOT NULL,
plugin_method varchar(255) NOT NULL,
PRIMARY KEY ( `plugin_class` (191), `plugin_method` (191) )

View file

@ -20,7 +20,6 @@ use Modern::Perl;
use Archive::Extract;
use CGI qw ( -utf8 );
use Class::Inspector;
use File::Copy;
use File::Temp;