Skip to content

Commit 33670f6

Browse files
committed
Remove unused arguments from !process-one-pod
1 parent 09c57bf commit 33670f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/DocSite/Generator.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ method !recursive-files-in($dir) {
224224
}
225225
}
226226

227-
method !process-one-pod (IO::Path $pod-file, Bool $expect-titles) {
228-
my $doc = DocSite::Documentable.new-from-file( $pod-file, $!type-graph, $expect-titles );
227+
method !process-one-pod (IO::Path $pod-file) {
228+
my $doc = DocSite::Documentable.new-from-file( $pod-file, $!type-graph );
229229
self!spurt-html-file( $pod-file, $doc );
230230
$!registry.add-new($doc);
231231
}

0 commit comments

Comments
 (0)