Skip to content

Commit

Permalink
remove POD
Browse files Browse the repository at this point in the history
  • Loading branch information
ribasushi committed Feb 23, 2010
1 parent 7eaae8d commit a798268
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions lib/DBIx/Class/Admin/Usage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,8 @@ sub set_simple {
}


=head2 pod
This returns the usage formated as a pod document
=cut


# This returns the usage formated as a pod document
sub pod {
my ($self) = @_;
return join qq{\n}, $self->pod_leader_text, $self->pod_option_text, $self->pod_authorlic_text;
Expand All @@ -44,17 +39,13 @@ sub pod_leader_text {

sub pod_authorlic_text {

return <<'EOA'
=head1 AUTHORS
See L<DBIx::Class/CONTRIBUTORS>
=head1 LICENSE
You may distribute this code under the same terms as Perl itself
=cut
EOA
return join ("\n\n",
'=head1 AUTHORS',
'See L<DBIx::Class/CONTRIBUTORS>',
'=head1 LICENSE',
'You may distribute this code under the same terms as Perl itself',
'=cut',
);
}


Expand Down

0 comments on commit a798268

Please sign in to comment.