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 bm...@apache.org on 2005/06/09 20:58:30 UTC

svn commit: r189792 - /lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java

Author: bmesser
Date: Thu Jun  9 11:58:30 2005
New Revision: 189792

URL: http://svn.apache.org/viewcvs?rev=189792&view=rev
Log:
move extension members to new class org.apache.lucene.index.IndexFileNames

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java?rev=189792&r1=189791&r2=189792&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java Thu Jun  9 11:58:30 2005
@@ -26,11 +26,6 @@
 public final class Constants {
   private Constants() {}			  // can't construct
 
-  /** Name of the index segment file */
-  public static final String INDEX_SEGMENTS_FILENAME = "segments";
-  /** Name of the index deletable file */
-  public static final String INDEX_DELETABLE_FILENAME = "deletable";
-  
   /** The value of <tt>System.getProperty("java.version")<tt>. **/
   public static final String JAVA_VERSION = System.getProperty("java.version");
   /** True iff this is Java version 1.1. */