From: Wolfgang M. M. <wol...@us...> - 2004-07-15 08:29:00
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/dom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16851/src/org/exist/dom Modified Files: SortedNodeSet.java Log Message: Added missing equal() method. Index: SortedNodeSet.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/dom/SortedNodeSet.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** SortedNodeSet.java 14 Jul 2004 19:03:24 -0000 1.20 --- SortedNodeSet.java 15 Jul 2004 08:28:52 -0000 1.21 *************** *** 242,245 **** --- 242,250 ---- return value.compareTo(o.value); } + + public boolean equals(OrderedLinkedList.Node other) { + IteratorItem o = (IteratorItem) other; + return value.equals(o.value); + } } *************** *** 249,251 **** --- 254,257 ---- public void add(NodeProxy proxy) { } + } |