about summary refs log tree commit homepage
path: root/lib/PublicInbox/ExtSearch.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/ExtSearch.pm')
-rw-r--r--lib/PublicInbox/ExtSearch.pm10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/PublicInbox/ExtSearch.pm b/lib/PublicInbox/ExtSearch.pm
index 7c9586a6..2bcdece6 100644
--- a/lib/PublicInbox/ExtSearch.pm
+++ b/lib/PublicInbox/ExtSearch.pm
@@ -16,12 +16,12 @@ use DBI qw(:sql_types); # SQL_BLOB
 use parent qw(PublicInbox::Search);
 
 sub new {
-        my (undef, $topdir) = @_;
+        my ($class, $topdir) = @_;
         bless {
                 topdir => $topdir,
                 # xpfx => 'ei15'
                 xpfx => "$topdir/ei".PublicInbox::Search::SCHEMA_VERSION
-        }, __PACKAGE__;
+        }, $class;
 }
 
 sub misc {
@@ -29,12 +29,6 @@ sub misc {
         $self->{misc} //= PublicInbox::MiscSearch->new("$self->{xpfx}/misc");
 }
 
-# overrides PublicInbox::Search::_xdb
-sub _xdb {
-        my ($self) = @_;
-        $self->xdb_sharded;
-}
-
 # same as per-inbox ->over, for now...
 sub over {
         my ($self) = @_;