From: <wol...@us...> - 2004-03-08 11:45:37
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/dom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22257/src/org/exist/dom Modified Files: ArraySet.java Log Message: * class BrokerPool now detects if a thread does already hold a broker object and increments a reference count instead of returning a new object. Otherwise, deadlock situations could occurr. * documentCache in RpcConnection should be cleared if changes have been made to the database. * implemented missing getMembersAsResource method in RemoteResourceSet. Index: ArraySet.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/dom/ArraySet.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ArraySet.java 5 Mar 2004 16:15:48 -0000 1.29 --- ArraySet.java 8 Mar 2004 11:21:21 -0000 1.30 *************** *** 243,247 **** int pos = search(nodes, 0, counter - 1, p); if (pos < 0) { - System.out.println(p.gid + " not found"); return null; } --- 243,246 ---- |