bug 9611: (follow-up) remove md5_base64 from imports - not used
authorSrdjan <srdjan@catalyst.net.nz>
Mon, 26 Aug 2013 05:05:07 +0000 (17:05 +1200)
committerGalen Charlton <gmc@esilibrary.com>
Thu, 3 Oct 2013 23:00:32 +0000 (23:00 +0000)
RM note: Digest::MD5 is used in C4::ImportExportFramework as part
of an unnecessary reimplementation of functionality supplied by
File::Temp.  See bug 10991 for a proposal to remove it.

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
C4/ImportExportFramework.pm

index 72873f2..f85101d 100644 (file)
@@ -21,7 +21,7 @@ use strict;
 use warnings;
 use XML::LibXML;
 use XML::LibXML::XPathContext;
-use Digest::MD5 qw(md5_base64);
+use Digest::MD5 qw();
 use POSIX qw(strftime);
 
 use C4::Context;