Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
index b3d6d2c..91f78e4 100644 (file)
@@ -1,12 +1,14 @@
 package # Hide from PAUSE
   DBIx::Class::SQLMaker::SQLite;
 
+use warnings;
+use strict;
+
 use base qw( DBIx::Class::SQLMaker );
-use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/;
 
 #
 # SQLite does not understand SELECT ... FOR UPDATE
 # Disable it here
-sub _lock_select { '' };
+sub _lock_select () { '' };
 
 1;