From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 35B68205C8 for ; Wed, 22 May 2019 21:47:01 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 5/5] DS: warn on deprecations Date: Wed, 22 May 2019 21:46:59 +0000 Message-Id: <20190522214659.6183-6-e@80x24.org> In-Reply-To: <20190522214659.6183-1-e@80x24.org> References: <20190522214659.6183-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Enabling deprecation warnings didn't seem to have any noticeable effects with "perl -w -c", so whatever reason Danga had for it is long irrelevant. --- lib/PublicInbox/DS.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm index d73c8d0..737f4c7 100644 --- a/lib/PublicInbox/DS.pm +++ b/lib/PublicInbox/DS.pm @@ -14,7 +14,6 @@ use POSIX (); use Time::HiRes (); use warnings; -no warnings qw(deprecated); use PublicInbox::Syscall qw(:epoll); -- EW