]> git.donarmstrong.com Git - term-progressbar.git/commitdiff
remove unused read_file
authorGabor Szabo <gabor@szabgab.com>
Tue, 29 Nov 2011 14:02:26 +0000 (16:02 +0200)
committerGabor Szabo <gabor@szabgab.com>
Tue, 29 Nov 2011 14:02:26 +0000 (16:02 +0200)
t/test.pm

index 482ae7630ab871e7edba69cfdaf927e2e7576d75..fb2e334bf036995295b08bf8b3a15e33cda6b25a 100644 (file)
--- a/t/test.pm
+++ b/t/test.pm
@@ -100,13 +100,11 @@ The following symbols are exported upon request:
 
 =item find_exec
 
-=item read_file
-
 =back
 
 =cut
 
-@EXPORT_OK = qw( check_req compare evcheck find_exec only_files read_file
+@EXPORT_OK = qw( check_req compare evcheck only_files 
                  save_output restore_output tempdir tmpnam );
 
 # Utility -----------------------------
@@ -1061,56 +1059,6 @@ nothing, if no such file exists.
 
 # defined further up to use in constants
 
-# -------------------------------------
-
-=head2 read_file
-
-=over 4
-
-=item ARGUMENTS
-
-=over 4
-
-=item filename
-
-B<Mandatory>
-
-=item line-terminator
-
-B<Optional>.  Value of C<$/>.  Defaults to C<"\n">.
-
-=back
-
-=item RETURNS
-
-=over 4
-
-=item lines
-
-A list of lines in the file (lines determined by the value of
-line-terminator), as an arrayref.
-
-=back
-
-=back
-
-=cut
-
-sub read_file {
-  my ($fn, $term) = @_;
-
-  $term = "\n"
-    unless defined $term;
-
-  my $fh = do { local *F; *F };
-  sysopen $fh, $fn, O_RDONLY;
-  local $/ = $term;
-  my @lines = <$fh>;
-  close $fh;
-
-  return \@lines;
-}
-
 # ----------------------------------------------------------------------------
 
 =head1 EXAMPLES