Bug 8433 Remove unused 'use English'
authorColin Campbell <colin.campbell@ptfs-europe.com>
Thu, 12 Jul 2012 16:11:14 +0000 (17:11 +0100)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Sun, 13 Jan 2013 13:42:50 +0000 (08:42 -0500)
Adding a use English to mosules which dont may
waste a few CPU cycles and bytes of storage
but doesnt add anything to the sum of human happiness

Remove unnecessary use English's
Removed already commented out but equally unnrcessary
use Exporter in same modules

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
C4/SIP/Sip.pm
C4/SIP/Sip/Configuration.pm
C4/SIP/Sip/Configuration/Account.pm
C4/SIP/Sip/Configuration/Institution.pm
C4/SIP/Sip/Configuration/Service.pm

index 8807df6..7a3d257 100644 (file)
@@ -6,7 +6,6 @@ package Sip;
 
 use strict;
 use warnings;
-use English;
 use Exporter;
 use Readonly;
 
index 662e24c..9a281dd 100644 (file)
@@ -7,7 +7,6 @@
 package Sip::Configuration;
 
 use strict;
-use English;
 use warnings;
 use XML::Simple qw(:strict);
 
index 7b3d03e..1867a4c 100644 (file)
@@ -7,8 +7,6 @@ package Sip::Configuration::Account;
 
 use strict;
 use warnings;
-use English;
-# use Exporter;
 
 sub new {
     my ($class, $obj) = @_;
index 1e50af2..cd2c80c 100644 (file)
@@ -7,8 +7,6 @@ package Sip::Configuration::Institution;
 
 use strict;
 use warnings;
-use English;
-# use Exporter;
 
 sub new {
     my ($class, $obj) = @_;
index b5e37e8..34a02b1 100644 (file)
@@ -7,8 +7,6 @@ package Sip::Configuration::Service;
 
 use strict;
 use warnings;
-use English;
-# use Exporter;
 
 sub new {
     my ($class, $obj) = @_;