ehatcher 2003/09/20 07:06:47 Modified: src/java/org/apache/lucene/util PriorityQueue.java Log: fix javadoc warning. exclamation point caused warning - maybe another fix to this, but this will will work for now Revision Changes Path 1.5 +2 -2 jakarta-lucene/src/java/org/apache/lucene/util/PriorityQueue.java Index: PriorityQueue.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/util/PriorityQueue.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- PriorityQueue.java 11 Sep 2003 12:15:30 -0000 1.4 +++ PriorityQueue.java 20 Sep 2003 14:06:47 -0000 1.5 @@ -84,10 +84,10 @@ heap[size] = element; upHeap(); } - + /** * Adds element to the PriorityQueue in log(size) time if either - * the PriorityQueue is not full, or !lessThan(element, top()). + * the PriorityQueue is not full, or not lessThan(element, top()). * @param element * @return true if element is added, false otherwise. */
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]