From: Wolfgang M. M. <wol...@us...> - 2004-07-19 13:06:33
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/dom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25772/src/org/exist/dom Modified Files: DocumentImpl.java Log Message: Fixed another locking issue which led to dirty reads if one thread tried to read index data from elements.dbx while another thread had been updating exactly the same data pages. Index: DocumentImpl.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/dom/DocumentImpl.java,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** DocumentImpl.java 12 Jul 2004 17:17:40 -0000 1.49 --- DocumentImpl.java 19 Jul 2004 13:06:25 -0000 1.50 *************** *** 442,445 **** --- 442,449 ---- } + public String getName() { + return collection.getName() + '/' + fileName; + } + private void checkAvail() { if (!complete) |