remove strict and warnings from modules that use Moose::Exporter
Jesse Luehrs [Sun, 3 May 2009 00:44:24 +0000 (19:44 -0500)]
lib/Moose.pm
lib/Moose/Role.pm
lib/Moose/Util/TypeConstraints.pm

index 16a2e82..942fea9 100644 (file)
@@ -1,9 +1,6 @@
 
 package Moose;
 
-use strict;
-use warnings;
-
 use 5.008;
 
 our $VERSION   = '0.77';
index 1620b47..0941da6 100644 (file)
@@ -1,9 +1,6 @@
 
 package Moose::Role;
 
-use strict;
-use warnings;
-
 use Scalar::Util 'blessed';
 use Carp         'croak';
 
index 441dd8a..4b731fc 100644 (file)
@@ -1,9 +1,6 @@
 
 package Moose::Util::TypeConstraints;
 
-use strict;
-use warnings;
-
 use Carp ();
 use List::MoreUtils qw( all any );
 use Scalar::Util qw( blessed reftype );