From: Eric Wong Date: Sun, 5 Jul 2020 23:27:17 +0000 (+0000) Subject: gzipfilter: minor cleanups X-Git-Tag: v1.6.0~299 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=cfd960f6a2c1cff9a9537b0758fcde1d3203b17f;hp=cfd960f6a2c1cff9a9537b0758fcde1d3203b17f;p=public-inbox.git gzipfilter: minor cleanups We currently don't use bytes::length in ->write, so there's no need to `use bytes'. Favor `//=' to describe the intent of the conditional assignment since the C::R::Z::Deflate object is always truthy. Also use the local $gz variable to avoid unnecessary {gz} hash lookups. ---