You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by ma...@apache.org on 2009/08/20 15:17:38 UTC

svn commit: r806160 - /lucene/java/trunk/src/java/org/apache/lucene/search/TimeLimitedCollector.java

Author: markrmiller
Date: Thu Aug 20 13:17:37 2009
New Revision: 806160

URL: http://svn.apache.org/viewvc?rev=806160&view=rev
Log:
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.

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/search/TimeLimitedCollector.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/search/TimeLimitedCollector.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/search/TimeLimitedCollector.java?rev=806160&r1=806159&r2=806160&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/search/TimeLimitedCollector.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/search/TimeLimitedCollector.java Thu Aug 20 13:17:37 2009
@@ -24,9 +24,8 @@
  * 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 {