From 18b70f57a6c12d75099bf28b0258c52cda825848 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 5 Mar 2012 02:41:28 -0600 Subject: this should be private --- lib/Term/Filter.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Term/Filter.pm b/lib/Term/Filter.pm index ec83393..6af58fd 100644 --- a/lib/Term/Filter.pm +++ b/lib/Term/Filter.pm @@ -77,7 +77,7 @@ sub _build_input_handles { [ $self->input, $self->pty ] } -has select => ( +has _select => ( is => 'ro', isa => 'IO::Select', lazy => 1, @@ -114,7 +114,7 @@ sub run { LOOP: while (1) { my ($r, undef, $e) = IO::Select->select( - $self->select, undef, $self->select, + $self->_select, undef, $self->_select, ); for my $fh (@$e) { -- cgit v1.2.3-54-g00ecf