From a588b3b996b003eea314add5e97f2b5c98fbbfc6 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 8 Aug 2017 10:04:31 -0400 Subject: [PATCH] Bug 14826: (QA follow-up) Only use plural modules in other modules Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart --- C4/Accounts.pm | 3 +-- C4/Circulation.pm | 3 +-- C4/Overdues.pm | 3 +-- Koha/Account.pm | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/C4/Accounts.pm b/C4/Accounts.pm index 2a9c3af080..45a92a936b 100644 --- a/C4/Accounts.pm +++ b/C4/Accounts.pm @@ -26,9 +26,8 @@ use C4::Members; use C4::Circulation qw(ReturnLostItem); use C4::Log qw(logaction); use Koha::Account; -use Koha::Account::Line; use Koha::Account::Lines; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Data::Dumper qw(Dumper); diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 3572718d31..9773f69b1b 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -55,8 +55,7 @@ use Koha::Holds; use Koha::RefundLostItemFeeRule; use Koha::RefundLostItemFeeRules; use Koha::Account::Lines; -use Koha::Account::Line; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Carp; use List::MoreUtils qw( uniq ); use Scalar::Util qw( looks_like_number ); diff --git a/C4/Overdues.pm b/C4/Overdues.pm index 07c9bbe030..bbde4b87aa 100644 --- a/C4/Overdues.pm +++ b/C4/Overdues.pm @@ -34,9 +34,8 @@ use C4::Accounts; use C4::Log; # logaction use C4::Debug; use Koha::DateUtils; -use Koha::Account::Line; use Koha::Account::Lines; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Koha::IssuingRules; use Koha::Libraries; diff --git a/Koha/Account.pm b/Koha/Account.pm index 616ebebf71..ed1fd3cea7 100644 --- a/Koha/Account.pm +++ b/Koha/Account.pm @@ -25,9 +25,8 @@ use Data::Dumper; use C4::Log qw( logaction ); use C4::Stats qw( UpdateStats ); -use Koha::Account::Line; use Koha::Account::Lines; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Koha::DateUtils qw( dt_from_string ); =head1 NAME -- 2.39.5