X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FParser%2FStorable.pm;h=0cc3194aa75ce32d2a745d70cd69e8319c5592bd;hb=45287c815973a11dea92e12cbefeca656fffa912;hp=7316b82275190ebc3d34017727642fdeee48d903;hpb=935800450f88b0500c4fa7c3b174cd22b5f9eb56;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator/Parser/Storable.pm b/lib/SQL/Translator/Parser/Storable.pm index 7316b82..0cc3194 100644 --- a/lib/SQL/Translator/Parser/Storable.pm +++ b/lib/SQL/Translator/Parser/Storable.pm @@ -20,17 +20,17 @@ the data into a database tables or graphs. =cut use strict; -use vars qw($DEBUG $VERSION @EXPORT_OK); +use warnings; +our $VERSION = '1.59'; + +our $DEBUG; $DEBUG = 0 unless defined $DEBUG; -$VERSION = '1.59'; use Storable; -use Exporter; use SQL::Translator::Utils qw(debug normalize_name); use base qw(Exporter); - -@EXPORT_OK = qw(parse); +our @EXPORT_OK = qw(parse); sub parse { my ($translator, $data) = @_; @@ -48,8 +48,6 @@ sub parse { 1; -# ------------------------------------------------------------------- - =pod =head1 SEE ALSO