Bug 17600: Standardize our EXPORT_OK
[srvgit] / misc / maintenance / touch_all_biblios.pl
index 8d65f21..be349cf 100755 (executable)
@@ -22,17 +22,17 @@ use warnings;
 BEGIN {
     # find Koha's Perl modules
     # test carefully before changing this
-    use FindBin;
+    use FindBin ();
     eval { require "$FindBin::Bin/../kohalib.pl" };
 }
 
 # possible modules to use
-use Getopt::Long;
+use Getopt::Long qw( GetOptions );
 
 use Koha::Script;
 use C4::Context;
-use C4::Biblio;
-use Pod::Usage;
+use C4::Biblio qw( GetMarcBiblio ModBiblio );
+use Pod::Usage qw( pod2usage );
 
 
 sub usage {