From: Wolfgang M. M. <wol...@us...> - 2004-03-25 13:01:36
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24347/src/org/exist/util Modified Files: VariableByteInputStream.java Log Message: * NativeBroker.findElementsByTagName now directly checks child, descendant and descendant-or-self relations by calling a passed instance of class NodeSelector. This saves one processing step when processing path expressions and reduces memory consumption. * clear the XQueryContext before putting a compiled expression into cache. Index: VariableByteInputStream.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/util/VariableByteInputStream.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** VariableByteInputStream.java 2 Oct 2003 12:20:19 -0000 1.8 --- VariableByteInputStream.java 25 Mar 2004 12:50:49 -0000 1.9 *************** *** 17,21 **** * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! * $Id: */ package org.exist.util; --- 17,21 ---- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! * $Id$ */ package org.exist.util; *************** *** 97,105 **** } - /** - * Description of the Method - * - *@return Description of the Return Value - */ public long readLong() throws EOFException, IOException { byte b = (byte) is_.read(); --- 97,100 ---- |