# Copyright (C) 2020 all contributors # License: AGPL-3.0+ package PublicInbox::NoopFilter; use strict; sub new { bless \(my $ignore), __PACKAGE__ } # noop workalike for PublicInbox::GzipFilter methods sub translate { $_[1] // '' } sub zmore { $_[1] } sub zflush { $_[1] // '' } 1;