Bug 14403: Remove warn in Koha::NorwegianPatronDB
authorMagnus Enger <magnus@libriotech.no>
Wed, 17 Jun 2015 12:36:44 +0000 (14:36 +0200)
committerTomas Cohen Arazi <tomascohen@unc.edu.ar>
Fri, 19 Jun 2015 14:34:16 +0000 (11:34 -0300)
Line 99 has an unconditional warn, left over from development:

warn "$combined_username => $combined_password";

This patch deletes the line i question.

To test:
No testing needed, just have a look at the diff and see that
it makes sense to delete the warn.

Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg@gmail.com>
Signed-off-by: Jonathan Druart <jonathan.druart@koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@unc.edu.ar>
Koha/NorwegianPatronDB.pm

index 03afc21..585dfd2 100644 (file)
@@ -96,7 +96,6 @@ sub SOAP::Transport::HTTP::Client::get_basic_credentials {
     # Combine usernames and passwords, and encrypt with SHA256
     my $combined_username = "$vendor_username-$library_username";
     my $combined_password = sha256_hex( "$library_password-$vendor_password" );
-    warn "$combined_username => $combined_password";
     return $combined_username => $combined_password;
 }