]> git.donarmstrong.com Git - class_modular.git/.git/commitdiff
* Cleanup use vars error
authorDon Armstrong <don@donarmstrong.com>
Tue, 9 Dec 2003 03:46:27 +0000 (03:46 +0000)
committerDon Armstrong <don@donarmstrong.com>
Tue, 9 Dec 2003 03:46:27 +0000 (03:46 +0000)
git-svn-id: file:///srv/don_svn/class_modular/trunk@13 96c6a18b-02ce-0310-9fca-9eb62c757ba6

lib/Class/Modular.pm

index 4bd2d15a0be7987472ec552c28feba31ea8b1a49..1b4a88113e3989007476c4f5f03d52fb14cfb833 100644 (file)
@@ -12,9 +12,9 @@ Class::Modular -- Modular class generation superclass
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
-package Foo::Bar;
+     package Foo::Bar;
 
 
-@ISA = qw(Class::Modular);
+     use base qw(Class::Modular);
 
 
 =head1 DESCRIPTION
 
 
 =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.
 
 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;
 =head1 FUNCTIONS
 
 =cut
 
 use strict;
-use vars qw($VERSION $DEBUG);
+use vars qw($VERSION $DEBUG $REVISION);
 
 use Carp;
 
 
 use Carp;