diff options
author | Tom Lane | 2023-04-08 03:22:28 +0000 |
---|---|---|
committer | Tom Lane | 2023-04-08 03:23:25 +0000 |
commit | 2bfbad9c42207b4ba75cfce9901fa78f2c024b61 (patch) | |
tree | f440c3880be03236fa5fff6e49f6751c2ac7d71b | |
parent | 3d4fa227bce4294ce1cc214b4a9d3b7caa3f0454 (diff) |
Remove useless dependencies in daitch_mokotoff_header.pl.
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/[email protected]
-rwxr-xr-x | contrib/fuzzystrmatch/daitch_mokotoff_header.pl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/contrib/fuzzystrmatch/daitch_mokotoff_header.pl b/contrib/fuzzystrmatch/daitch_mokotoff_header.pl index 6900987208..51a40e7748 100755 --- a/contrib/fuzzystrmatch/daitch_mokotoff_header.pl +++ b/contrib/fuzzystrmatch/daitch_mokotoff_header.pl @@ -11,10 +11,6 @@ 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]; |