Eliminate POD-containing heredoc
Dagfinn Ilmari Mannsåker [Tue, 26 Aug 2014 18:38:51 +0000 (19:38 +0100)]
The POD was being picked up by POD parsers, and showed up as a
spurious "BASE CLASS: $base_class" heading.

lib/DBIx/Class/Schema/Loader/Base.pm

index 2b11d49..392fb1e 100644 (file)
@@ -3011,12 +3011,7 @@ sub _base_class_pod {
 
     return '' unless $self->generate_pod;
 
-    return <<"EOF"
-=head1 BASE CLASS: L<$base_class>
-
-=cut
-
-EOF
+    return "\n=head1 BASE CLASS: L<$base_class>\n\n=cut\n\n";
 }
 
 sub _filter_comment {