Apache-CVS
view release on metacpan or search on metacpan
CVS/Revision.pm view on Meta::CPAN
=cut
sub symbol {
my $self = shift;
$self->{symbol} = shift if scalar @_;
return $self->{symbol};
}
=item $revision->date()
Returns the date of the revision in Unix epoch time.
=cut
sub date {
my $self = shift;
$self->{date} = shift if scalar @_;
return $self->{date};
}
=item $revision->comment()
( run in 3.737 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )