Remove useless dependencies in daitch_mokotoff_header.pl.
authorTom Lane <[email protected]>
Sat, 8 Apr 2023 03:22:28 +0000 (23:22 -0400)
committerTom Lane <[email protected]>
Sat, 8 Apr 2023 03:23:25 +0000 (23:23 -0400)
Actually, the correct fix for this is "we don't need this at all",
because this program isn't dealing in any non-ASCII data.  The
dependency on Data::Dumper seems to be a leftover too.

Discussion: https://postgr.es/m/3287943.1680922997@sss.pgh.pa.us

contrib/fuzzystrmatch/daitch_mokotoff_header.pl

index 6900987208f91284df4dba4915788bf0f0a4ed0e..51a40e774898a7c24651ccce74e1fbe9f6c38779 100755 (executable)
 use strict;
 use warnings;
 
-use utf8;
-use open IO => ':encoding(UTF-8)', ':std';
-use Data::Dumper;
-
 die "Usage: $0 OUTPUT_FILE\n" if @ARGV != 1;
 my $output_file = $ARGV[0];