Bug 20727: (QA follow-up) Remove a few use statements again

We do no longer need "use Koha::UploadedFile" in a few places.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Marcel de Rooy 2018-05-30 16:50:27 +02:00 committed by Nick Clemens
parent f63bb8b0ca
commit 05812dbbba
6 changed files with 0 additions and 6 deletions

View file

@ -30,7 +30,6 @@ use C4::Templates; # to get the template
use C4::Languages;
use C4::Search::History;
use Koha;
use Koha::UploadedFile;
use Koha::Caches;
use Koha::AuthUtils qw(get_script_name hash_password);
use Koha::DateUtils qw(dt_from_string);

View file

@ -29,7 +29,6 @@ use C4::Context;
use C4::Output;
use C4::Templates;
use C4::Koha;
use Koha::UploadedFile;
use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

View file

@ -28,7 +28,6 @@ use Net::SFTP::Foreign;
use File::Slurp;
use File::Copy;
use File::Basename qw( fileparse );
use Koha::UploadedFile;
use Koha::Database;
use Encode qw( from_to );

View file

@ -47,7 +47,6 @@ use Koha::Caches;
use Koha::Config::SysPrefs;
use Koha::Illrequest::Config;
use Koha::SearchEngine::Elasticsearch;
use Koha::UploadedFiles;
use C4::Members::Statistics;

View file

@ -38,7 +38,6 @@ use File::Spec;
use Koha::Calendar;
use Koha::DateUtils;
use Koha::UploadedFile;
use C4::Log;
my $help;

View file

@ -26,7 +26,6 @@ use Test::More tests => 16;
use Koha::Schema;
use Carp qw/croak carp/;
use Koha::UploadedFile;
BEGIN {
use_ok('Koha::Sitemapper');