fix javadoc warning. exclamation point caused warning - maybe another fix to this, but this will will work for now

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2003-09-20 14:06:47 +00:00
parent 90534ff460
commit 9d46cda9e5
1 changed files with 2 additions and 2 deletions

View File

@ -84,10 +84,10 @@ public abstract class PriorityQueue {
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.
*/