From: Chris Prather Date: Wed, 29 Apr 2009 02:33:35 +0000 (-0400) Subject: move the use line for Data::OptList to where we use Data::OptList::mkopt X-Git-Tag: 0.77~28 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9ac41ce6ef3be911b7634ca6843fce96b26d65d1;p=gitmo%2FMoose.git move the use line for Data::OptList to where we use Data::OptList::mkopt --- diff --git a/lib/Moose/Role.pm b/lib/Moose/Role.pm index 62f561f..dc6c5a8 100644 --- a/lib/Moose/Role.pm +++ b/lib/Moose/Role.pm @@ -7,7 +7,6 @@ use warnings; use Scalar::Util 'blessed'; use Carp 'croak'; -use Data::OptList; use Sub::Exporter; our $VERSION = '0.76'; diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index 6236107..607e167 100644 --- a/lib/Moose/Util.pm +++ b/lib/Moose/Util.pm @@ -3,6 +3,7 @@ package Moose::Util; use strict; use warnings; +use Data::OptList; use Sub::Exporter; use Scalar::Util 'blessed'; use Class::MOP 0.60;