From c20f016f2c55eee25474a6da6b26c5a8a79e9255 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 followup) Only use plural modules in other modules Signed-off-by: Tomas Cohen Arazi --- 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 2a9c3af..45a92a9 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 e5534dd..298b039 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 07c9bbe..bbde4b8 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 616ebeb..ed1fd3c 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.7.4