]> Sergey Matveev's repositories - public-inbox.git/commitdiff
DS: get rid of unused methods and aliases
authorEric Wong <e@80x24.org>
Wed, 22 May 2019 21:46:55 +0000 (21:46 +0000)
committerEric Wong <e@80x24.org>
Wed, 22 May 2019 21:53:23 +0000 (21:53 +0000)
"make syntax" is clean, now

lib/PublicInbox/DS.pm

index 779215c93e518bd0f29467285d505cc4d7d8596b..0acb034fc25cc5718539a6f858cc7dfdc3b6a02a 100644 (file)
@@ -105,17 +105,6 @@ sub HaveEpoll {
     return $HaveEpoll;
 }
 
-=head2 C<< CLASS->WatchedSockets() >>
-
-Returns the number of file descriptors which are registered with the global
-poll object.
-
-=cut
-sub WatchedSockets {
-    return scalar keys %DescriptorMap;
-}
-*watched_sockets = *WatchedSockets;
-
 =head2 C<< CLASS->ToClose() >>
 
 Return the list of sockets that are awaiting close() at the end of the
@@ -206,20 +195,6 @@ sub AddTimer {
     die "Shouldn't get here.";
 }
 
-=head2 C<< CLASS->DescriptorMap() >>
-
-Get the hash of PublicInbox::DS objects keyed by the file descriptor (fileno) they
-are wrapping.
-
-Returns a hash in list context or a hashref in scalar context.
-
-=cut
-sub DescriptorMap {
-    return wantarray ? %DescriptorMap : \%DescriptorMap;
-}
-*descriptor_map = *DescriptorMap;
-*get_sock_ref = *DescriptorMap;
-
 sub _InitPoller
 {
     return if $DoneInit;