deleted unneeded
[catagits/CatalystX-HelpText.git] / lib / CatalystX / HelpText / Script / SearchUndocumentedHelpText.pm
index c07d7ab..2dbe93e 100644 (file)
@@ -21,16 +21,11 @@ has finder_class => (
     }
 );
 
-sub _construct_finder {
-    my $self = shift;
-    return $self->new_finder(@_);
-}
-
 has finder => (
     isa => duck_type([qw/ find_helptext_keys_in_fn /]),
     default => sub {
         my $self = shift;
-        $self->_construct_finder(
+        $self->new_finder(
             template_search_dir => $self->template_search_dir
         );
     },