From: Eric Wong Date: Mon, 16 Dec 2019 08:07:34 +0000 (+0000) Subject: t/edit.t: drop redundant "delete local $ENV{...}" X-Git-Tag: v1.3.0~219 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=8d801146e36c42175a709bfdc90137fddc5c0862;hp=8d801146e36c42175a709bfdc90137fddc5c0862;p=public-inbox.git t/edit.t: drop redundant "delete local $ENV{...}" "delete local" is only in Perl v5.11.0, and we only depend on Perl v5.10.1. We already localize and delete it as two separate statements immediately above. I wish this was hidden behind a "use feature" flag like other new-fangled things :<. Oh well, I think the oldest Perl actually in use for this project is 5.16 (CentOS 7.x). ---