From: Ilya M. <m_...@us...> - 2003-05-21 12:19:49
|
Update of /cvsroot/perl-xml/XML-LibXML-XPathContext In directory sc8-pr-cvs1:/tmp/cvs-serv26517 Modified Files: XPathContext.pm Log Message: Cosmetic fixes Index: XPathContext.pm =================================================================== RCS file: /cvsroot/perl-xml/XML-LibXML-XPathContext/XPathContext.pm,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- XPathContext.pm 21 May 2003 10:49:09 -0000 1.26 +++ XPathContext.pm 21 May 2003 12:19:38 -0000 1.27 @@ -33,9 +33,8 @@ sub find { my ($self, $xpath, $node) = @_; - my ($type, @params); - ($type, @params) = $self->_guarded_find_call('_find', $xpath, $node); + my ($type, @params) = $self->_guarded_find_call('_find', $xpath, $node); if ($type) { return $type->new(@params); |