use warnings
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer.pm
index 8680f42..63a1597 100644 (file)
@@ -1,6 +1,7 @@
 package SQL::Translator::Producer;
 
 use strict;
+use warnings;
 use vars qw($VERSION);
 use Scalar::Util ();
 $VERSION = '1.59';
@@ -63,8 +64,8 @@ SQL::Translator::Producer - describes how to write a producer
 
 Producer modules designed to be used with SQL::Translator need to
 implement a single function, called B<produce>.  B<produce> will be
-called with the SQL::Translator object from which it is expected to 
-retrieve the SQL::Translator::Schema object which has been populated 
+called with the SQL::Translator object from which it is expected to
+retrieve the SQL::Translator::Schema object which has been populated
 by the parser.  It is expected to return a string.
 
 =head1 METHODS