undeprecate the Version constants for older releases

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@824723 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-10-13 12:44:25 +00:00
parent 587c951273
commit bdef31ea5c
1 changed files with 2 additions and 4 deletions

View File

@ -37,12 +37,10 @@ public final class Version extends Parameter implements Serializable {
*/
public static final Version LUCENE_CURRENT = new Version("LUCENE_CURRENT", 0);
/** Match settings and bugs in Lucene's 2.4 release.
* @deprecated This will be removed in 3.0 */
/** Match settings and bugs in Lucene's 2.4 release. */
public static final Version LUCENE_24 = new Version("LUCENE_24", 2400);
/** Match settings and bugs in Lucene's 2.9 release.
* @deprecated This will be removed in 3.0 */
/** Match settings and bugs in Lucene's 2.9 release. */
public static final Version LUCENE_29 = new Version("LUCENE_29", 2900);
private final int v;