[Bast-commits] r9246 - SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Tue Apr 27 21:07:28 GMT 2010


Author: dhoss
Date: 2010-04-27 22:07:28 +0100 (Tue, 27 Apr 2010)
New Revision: 9246

Modified:
   SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Tree.pm
Log:
don't need strict/warnings when using moose, derp

Modified: SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Tree.pm
===================================================================
--- SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Tree.pm	2010-04-27 20:54:10 UTC (rev 9245)
+++ SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Tree.pm	2010-04-27 21:07:28 UTC (rev 9246)
@@ -1,12 +1,11 @@
 package SQL::Abstract::Tree;
-use strict;
-use warnings;
+use Moose;
+use namespace::autoclean;
 
 use Data::Dumper;
 use Carp;
-use Moose;
-use namespace::autoclean;
 
+
 has 'case_sensitive' => (
     is       => 'rw',
     required => 1,




More information about the Bast-commits mailing list