From 75b8d24d86bf556f38e543b6bf5de7704e5e3abf Mon Sep 17 00:00:00 2001 From: Uwe Schindler Date: Sun, 11 Oct 2009 13:15:59 +0000 Subject: [PATCH] More javadoc fixes, sorry for duplicate commit, didn't see this before git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@824068 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/lucene/util/PriorityQueue.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/lucene/util/PriorityQueue.java b/src/java/org/apache/lucene/util/PriorityQueue.java index 5d065f8f32d..d0212776093 100644 --- a/src/java/org/apache/lucene/util/PriorityQueue.java +++ b/src/java/org/apache/lucene/util/PriorityQueue.java @@ -116,8 +116,8 @@ public abstract class PriorityQueue { } /** - * insertWithOverflow() is the same as insert() except its - * return value: it returns the object (if any) that was + * Adds an Object to a PriorityQueue in log(size) time. + * It returns the object (if any) that was * dropped off the heap because it was full. This can be * the given parameter (in case it is smaller than the * full heap's minimum, and couldn't be added), or another