From: Wolfgang M. M. <wol...@us...> - 2004-04-23 13:08:27
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xupdate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2156/src/org/exist/xupdate Modified Files: Modification.java Log Message: A large number of XUpdate bugs has been fixed. Index: Modification.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xupdate/Modification.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Modification.java 14 Apr 2004 12:17:23 -0000 1.20 --- Modification.java 23 Apr 2004 13:07:47 -0000 1.21 *************** *** 80,84 **** throw new RuntimeException(treeParser.getErrorMessage()); } - LOG.info("modification select: " + expr.pprint()); long start = System.currentTimeMillis(); --- 80,83 ---- *************** *** 132,137 **** final long address = node.getInternalAddress(); for (int i = 0; i < nodes.length; i++) { ! if (StorageAddress.equals(nodes[i].getInternalAddress(), address)) nodes[i] = node; } } --- 131,137 ---- final long address = node.getInternalAddress(); for (int i = 0; i < nodes.length; i++) { ! if (StorageAddress.equals(nodes[i].getInternalAddress(), address)) { nodes[i] = node; + } } } |