Bug 20727: (QA follow-up) Remove a few use statements again
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Wed, 30 May 2018 14:50:27 +0000 (16:50 +0200)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 22 Jun 2018 16:10:10 +0000 (16:10 +0000)
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>

C4/Auth.pm
C4/InstallAuth.pm
Koha/Edifact/Transport.pm
about.pl
misc/cronjobs/fines.pl
t/db_dependent/Sitemapper.t

index 6f00a1b..5722e4f 100644 (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);
index d279ae8..5f5f213 100644 (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);
 
index c14df3a..036dbc2 100644 (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 );
 
index 6151d18..a79fc2c 100755 (executable)
--- a/about.pl
+++ b/about.pl
@@ -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;
 
index 9fa7b94..1568908 100755 (executable)
@@ -38,7 +38,6 @@ use File::Spec;
 
 use Koha::Calendar;
 use Koha::DateUtils;
-use Koha::UploadedFile;
 use C4::Log;
 
 my $help;
index 91a4933..bf2576b 100755 (executable)
@@ -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');