From b6cca87695c2162988f0b8239391d1c8c0d012c3 Mon Sep 17 00:00:00 2001 From: dbs Date: Fri, 10 Sep 2010 19:07:45 +0000 Subject: [PATCH] 'use parent' consistently throughout OfflineStore.pm If we're going to use "use parent" instead of "use base" when creating the child instance of Class::DBI 3.01 that is OpenILS::Utils::OfflineStore, we might as well be consistent when declaring its own children. git-svn-id: svn://svn.open-ils.org/ILS/trunk@17585 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm b/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm index ec8448acdf..5bf0141cdb 100644 --- a/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm +++ b/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm @@ -49,7 +49,7 @@ sub disconnect { package OpenILS::Utils::OfflineStore::Session; -use base 'OpenILS::Utils::OfflineStore'; +use parent 'OpenILS::Utils::OfflineStore'; sub _create_table { my $self = shift; @@ -80,7 +80,7 @@ __PACKAGE__->has_many(scripts => 'OpenILS::Utils::OfflineStore::Script'); package OpenILS::Utils::OfflineStore::Script; -use base 'OpenILS::Utils::OfflineStore'; +use parent 'OpenILS::Utils::OfflineStore'; sub _create_table { my $self = shift; -- 2.11.0