Skip to content

Commit

Permalink
cleanup unnecessary statements
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Oct 10, 2018
1 parent 2804423 commit dd82a45
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion lib/Hijk.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use Time::HiRes;
use POSIX qw(:errno_h);
use Socket qw(PF_INET SOCK_STREAM pack_sockaddr_in inet_ntoa $CRLF SOL_SOCKET SO_ERROR);
use Socket qw(PF_INET SOCK_STREAM pack_sockaddr_in $CRLF SOL_SOCKET SO_ERROR);
use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);

our $VERSION = "0.27";
Expand Down
1 change: 0 additions & 1 deletion t/bin/split-in-chunks.psgi
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ sub {
my $responder = shift;
my $writer = $responder->([ 200, [ 'Content-Type', 'text/plain' ]]);

my @chunks;
while($epic_graph) {
my $l = rand() * 30 + 1;
my $chunk = substr($epic_graph, 0, $l, '');
Expand Down
1 change: 0 additions & 1 deletion t/live-connect-timeout.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
use strict;
use warnings;
use Test::More;
use Test::Exception;

use Net::Ping;
use Hijk;
Expand Down
1 change: 0 additions & 1 deletion t/select-timeout.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
use strict;
use warnings;
use Test::More;
use Test::Exception;

use Hijk;
use Time::HiRes;
Expand Down

0 comments on commit dd82a45

Please sign in to comment.