From 206d3c0589cc2bb8aac3831250145490eb1cd70b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 25 Feb 2012 02:22:53 -0600 Subject: don't need to track this anymore with Select::Retry --- lib/Term/Filter.pm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/Term/Filter.pm b/lib/Term/Filter.pm index dae2cbb..f7e8136 100644 --- a/lib/Term/Filter.pm +++ b/lib/Term/Filter.pm @@ -70,13 +70,6 @@ sub _build_input_handles { [ $self->input, $self->pty ] } -has _got_winch => ( - is => 'rw', - isa => 'Bool', - default => 0, - init_arg => undef, -); - has _raw_mode => ( is => 'rw', isa => 'Bool', @@ -145,7 +138,6 @@ sub _setup { my $prev_winch = $SIG{WINCH}; $SIG{WINCH} = sub { - $self->_got_winch(1); $self->pty->slave->clone_winsize_from(\*STDIN); $self->pty->kill('WINCH', 1); -- cgit v1.2.3-54-g00ecf