From: Ansgar Burchardt Date: Thu, 4 Feb 2010 13:26:24 +0000 (+0900) Subject: remove unused "use Try::Tiny" X-Git-Tag: 0.21^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2F0.21;hp=67eec8f705f693670aba8d2810e30fcf59191f44;p=gitmo%2FMooseX-Types-Structured.git remove unused "use Try::Tiny" t/04-map.t did have a "use Try::Tiny" statement even though Try::Tiny is not used in the test. Signed-off-by: Ansgar Burchardt --- diff --git a/t/04-map.t b/t/04-map.t index b976b1a..636b11d 100644 --- a/t/04-map.t +++ b/t/04-map.t @@ -4,7 +4,6 @@ use Test::More; use MooseX::Types::Moose qw(Int Num); use MooseX::Types::Structured qw(Map); -use Try::Tiny; my $type = Map[ Int, Num ];