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?p=gitmo%2FMooseX-Types-Structured.git;a=commitdiff_plain;h=382af4f1f4ac5d0e5861e90c308a53c5879665e4 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 ];