From: John Napiorkowski Date: Mon, 30 Mar 2009 14:14:35 +0000 (+0000) Subject: removed useless comments (just distract you from the code) X-Git-Tag: 0.01~41 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=652995cba973bf89d8319f5a5b32bcc669a59fd3;p=gitmo%2FMooseX-Dependent.git removed useless comments (just distract you from the code) --- diff --git a/t/02-depending.t b/t/02-depending.t index 17fe63e..245e246 100644 --- a/t/02-depending.t +++ b/t/02-depending.t @@ -44,8 +44,6 @@ use Test::More tests=>22; { Int, sub { my ($dependent_int, $constraining_arrayref) = @_; - ## Yes, this is braindead way to check for uniques in an array - ## but this doesn't require additional dependencies. (grep { $_ == $dependent_int} @$constraining_arrayref) ? 0:1 }, ArrayRef[Int], @@ -63,8 +61,6 @@ use Test::More tests=>22; { subtype UniqueInt2, as depending { my ($dependent_int, $constraining_arrayref) = @_; - ## Yes, this is braindead way to check for uniques in an array - ## but this doesn't require additional dependencies. (grep { $_ == $dependent_int} @$constraining_arrayref) ? 0:1 } Int, ArrayRef[Int];