From: Jesse Luehrs Date: Sun, 3 May 2009 00:44:24 +0000 (-0500) Subject: remove strict and warnings from modules that use Moose::Exporter X-Git-Tag: 0.78~50 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a4f8d79a0d61123b8fafcfeb24b865921bf60099;p=gitmo%2FMoose.git remove strict and warnings from modules that use Moose::Exporter --- diff --git a/lib/Moose.pm b/lib/Moose.pm index 16a2e82..942fea9 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -1,9 +1,6 @@ package Moose; -use strict; -use warnings; - use 5.008; our $VERSION = '0.77'; diff --git a/lib/Moose/Role.pm b/lib/Moose/Role.pm index 1620b47..0941da6 100644 --- a/lib/Moose/Role.pm +++ b/lib/Moose/Role.pm @@ -1,9 +1,6 @@ package Moose::Role; -use strict; -use warnings; - use Scalar::Util 'blessed'; use Carp 'croak'; diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm index 441dd8a..4b731fc 100644 --- a/lib/Moose/Util/TypeConstraints.pm +++ b/lib/Moose/Util/TypeConstraints.pm @@ -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 );