The first sentence of a deprecation should indicate what to use instead so that shows up in the summary - having "this will be removed in 3.0" show up in the summary is much less useful.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@806160 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2009-08-20 13:17:37 +00:00
parent 66c2217a55
commit 26afe4749e
1 changed files with 2 additions and 3 deletions

View File

@ -24,9 +24,8 @@ package org.apache.lucene.search;
* search thread is stopped by throwing a TimeExceeded Exception.
* </p>
*
* @deprecated this class will be removed in 3.0. Use
* {@link TimeLimitingCollector} instead, which extends the new
* {@link Collector}.
* @deprecated Use {@link TimeLimitingCollector} instead, which extends the new
* {@link Collector}. This class will be removed in 3.0.
*/
public class TimeLimitedCollector extends HitCollector {