Skip to content

Commit

Permalink
avoid listing secondary/internal packages in "provides" metadata and …
Browse files Browse the repository at this point in the history
…indexing in PAUSE
  • Loading branch information
karenetheridge committed Jul 14, 2017
1 parent 5367928 commit e9c1a9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/LWP/Debug/TraceHTTP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ package LWP::Debug::TraceHTTP;
use strict;
use base 'LWP::Protocol::http';

package LWP::Debug::TraceHTTP::Socket;
package # hide from PAUSE
LWP::Debug::TraceHTTP::Socket;

use Data::Dump 1.13;
use Data::Dump::Trace qw(autowrap mcall);
Expand Down
6 changes: 4 additions & 2 deletions lib/LWP/Protocol/http.pm
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ sub request


#-----------------------------------------------------------
package LWP::Protocol::http::SocketMethods;
package # hide from PAUSE
LWP::Protocol::http::SocketMethods;

sub ping {
my $self = shift;
Expand All @@ -510,7 +511,8 @@ sub increment_response_count {
}

#-----------------------------------------------------------
package LWP::Protocol::http::Socket;
package # hide from PAUSE
LWP::Protocol::http::Socket;

use base qw(LWP::Protocol::http::SocketMethods Net::HTTP);

Expand Down

0 comments on commit e9c1a9f

Please sign in to comment.