From: Andrew Chilton Date: Sat, 21 Jun 2008 12:11:16 +0000 (+1200) Subject: There are no arrays in the Comment type. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=32db89bed74eba2ddaac3970daa7fd8992d70933;p=cil.git There are no arrays in the Comment type. --- diff --git a/lib/CIL/Comment.pm b/lib/CIL/Comment.pm index 6f5a313..4206ebd 100644 --- a/lib/CIL/Comment.pm +++ b/lib/CIL/Comment.pm @@ -29,13 +29,6 @@ use base qw(CIL::Base); __PACKAGE__->mk_accessors(qw(Issue)); my @FIELDS = ( qw(Issue CreatedBy Inserted Updated Description) ); -my $cfg = { - array => { - Label => 1, - Comment => 1, - Attachment => 1, - }, -}; ## ---------------------------------------------------------------------------- @@ -73,7 +66,7 @@ sub fields { } sub array_fields { - return $cfg->{array}; + return {}; } ## ----------------------------------------------------------------------------