From: Eric Wong Date: Sat, 28 May 2016 01:57:13 +0000 (+0000) Subject: config: remove try_cat X-Git-Tag: v1.0.0~479 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=666b537fb9d3984370d75f16eae43c2ced752963;p=public-inbox.git config: remove try_cat It's moved into the Inbox module and we no longer use it in WWW --- diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm index 35b24af4..317d290a 100644 --- a/lib/PublicInbox/Config.pm +++ b/lib/PublicInbox/Config.pm @@ -5,8 +5,6 @@ package PublicInbox::Config; use strict; use warnings; -use base qw/Exporter/; -our @EXPORT_OK = qw/try_cat/; require PublicInbox::Inbox; use PublicInbox::Spawn qw(popen_rd); use File::Path::Expand qw/expand_filename/; @@ -101,16 +99,6 @@ sub git_config_dump { \%rv; } -sub try_cat { - my ($path) = @_; - my $rv; - if (open(my $fh, '<', $path)) { - local $/; - $rv = <$fh>; - } - $rv; -} - sub _fill { my ($self, $pfx) = @_; my $rv = {}; diff --git a/lib/PublicInbox/WWW.pm b/lib/PublicInbox/WWW.pm index e8f1fbf0..ab3cd5d6 100644 --- a/lib/PublicInbox/WWW.pm +++ b/lib/PublicInbox/WWW.pm @@ -14,7 +14,7 @@ use 5.008; use strict; use warnings; use Plack::Request; -use PublicInbox::Config qw(try_cat); +use PublicInbox::Config; use URI::Escape qw(uri_escape_utf8 uri_unescape); use constant SSOMA_URL => '//ssoma.public-inbox.org/'; use constant PI_URL => '//public-inbox.org/';