about summary refs log tree commit homepage
path: root/lib/PublicInbox/Import.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-07-17 06:31:49 +0000
committerEric Wong <e@yhbt.net>2020-07-17 20:56:49 +0000
commit26b19adf05338a0842d914a10699842620ab8f90 (patch)
treec3cea610b2d92eb5f39d790d4778b37bbfca0191 /lib/PublicInbox/Import.pm
parent46e4fa33863f136e8f36ffcc65231c2bc7de11e1 (diff)
downloadpublic-inbox-26b19adf05338a0842d914a10699842620ab8f90.tar.gz
We only support Unix-like platforms where binmode (":raw") is
the default anyways, and v5.10 semantics means it won't do
unicode_strings (unlike v5.12).  So save some lines of code.
Diffstat (limited to 'lib/PublicInbox/Import.pm')
-rw-r--r--lib/PublicInbox/Import.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm
index fb813159..b61d4b31 100644
--- a/lib/PublicInbox/Import.pm
+++ b/lib/PublicInbox/Import.pm
@@ -73,8 +73,6 @@ sub gfi_start {
         $self->{out} = $out_w;
         $self->{pid} = $pid;
         $self->{nchg} = 0;
-        binmode $out_w, ':raw' or die "binmode :raw failed: $!";
-        binmode $in_r, ':raw' or die "binmode :raw failed: $!";
         ($in_r, $out_w);
 }