From 44c8669f46de5293e57a26b841e8ee1f3e51105e Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 9 Dec 2003 03:46:27 +0000 Subject: [PATCH] * Cleanup use vars error git-svn-id: file:///srv/don_svn/class_modular/trunk@13 96c6a18b-02ce-0310-9fca-9eb62c757ba6 --- lib/Class/Modular.pm | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/lib/Class/Modular.pm b/lib/Class/Modular.pm index 4bd2d15..1b4a881 100644 --- a/lib/Class/Modular.pm +++ b/lib/Class/Modular.pm @@ -12,9 +12,9 @@ Class::Modular -- Modular class generation superclass =head1 SYNOPSIS -package Foo::Bar; + package Foo::Bar; -@ISA = qw(Class::Modular); + use base qw(Class::Modular); =head1 DESCRIPTION @@ -28,25 +28,12 @@ functions. Less generic functions can be included or overridden without modifying the base classes. This allows for code to be more modular, and reduces code duplication. -=over - -=item new - -new is responsible for blessing and creating a new database superclass. - -=item load - -load is responsible for loading database plugins - -=back - - =head1 FUNCTIONS =cut use strict; -use vars qw($VERSION $DEBUG); +use vars qw($VERSION $DEBUG $REVISION); use Carp; -- 2.39.2