'use parent' consistently throughout OfflineStore.pm
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 10 Sep 2010 19:07:45 +0000 (19:07 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 10 Sep 2010 19:07:45 +0000 (19:07 +0000)
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

index ec8448a..5bf0141 100644 (file)
@@ -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;