remove $ tags

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@899914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2010-01-16 10:31:33 +00:00
parent 2bbd00bd1e
commit 9caaad0fea
25 changed files with 0 additions and 54 deletions

View File

@ -1,7 +1,5 @@
Lucene Build Instructions
$Id$
Basic steps:
0) Install JDK 1.5 (or greater), Ant 1.7.0 (or greater)
1) Download Lucene from Apache and unpack it

View File

@ -1,5 +1,4 @@
Lucene Change Log
$Id$
======================= Trunk (not yet released) =======================
Changes in backwards compatibility policy

View File

@ -1,7 +1,5 @@
Lucene README file
$Id$
INTRODUCTION
Lucene is a Java full-text search engine. Lucene is not a complete

View File

@ -15,8 +15,6 @@
* limitations under the License.
*/
/* $Id: PatternParser.java 426576 2006-07-28 15:44:37Z jeremias $ */
package org.apache.lucene.analysis.compound.hyphenation;
// SAX

View File

@ -27,7 +27,6 @@ import java.io.IOException;
/**
* Merges indices specified on the command line into the index
* specified as the first command line argument.
* @version $Id$
*/
public class IndexMergeTool {
public static void main(String[] args) throws IOException {

View File

@ -37,8 +37,6 @@ import org.apache.lucene.store.RAMDirectory;
/**
* Tests changing of field norms with a custom similarity and with fake norms.
*
* @version $Id$
*/
public class TestFieldNormModifier extends TestCase {
public TestFieldNormModifier(String name) {

View File

@ -40,8 +40,6 @@ import org.apache.lucene.store.RAMDirectory;
/**
* Tests changing the norms after changing the simularity
*
* @version $Id:$
*/
public class TestLengthNormModifier extends TestCase {
public TestLengthNormModifier(String name) {

View File

@ -38,8 +38,6 @@ import java.rmi.Remote;
*
* </p>
* </p>
*
* @version $Id:$
*/
public interface RMIRemoteSearchable extends Searchable, Remote {

View File

@ -35,8 +35,6 @@ import org.apache.lucene.index.IndexReader;
* To cache a result you must do something like
* RemoteCachingWrapperFilter f = new RemoteCachingWrapperFilter(new CachingWrapperFilter(myFilter));
* <p/>
*
* @version $Id:$
*/
public class RemoteCachingWrapperFilter extends Filter {
protected Filter filter;

View File

@ -33,8 +33,6 @@ import org.apache.lucene.store.RAMDirectory;
/**
* Tests that the index is cached on the searcher side of things.
* NOTE: This is copied from TestRemoteSearchable since it already had a remote index set up.
*
* @version $Id:$
*/
public class TestRemoteCachingWrapperFilter extends LuceneTestCase {
public TestRemoteCachingWrapperFilter(String name) {

View File

@ -44,8 +44,6 @@ import org.apache.lucene.util._TestUtil;
* Unit tests for remote sorting code.
* Note: This is a modified copy of {@link TestSort} without duplicated test
* methods and therefore unused members and methodes.
*
* @version $Id:$
*/
public class TestRemoteSort extends LuceneTestCase implements Serializable {

View File

@ -24,9 +24,6 @@ import java.io.IOException;
* They can be used as {@link java.io.Reader} with additional offset
* correction. {@link Tokenizer}s will automatically use {@link #correctOffset}
* if a CharFilter/CharStream subclass is used.
*
* @version $Id$
*
*/
public abstract class CharFilter extends CharStream {

View File

@ -40,7 +40,6 @@ import org.apache.lucene.util.BitVector;
import org.apache.lucene.util.CloseableThreadLocal;
import org.apache.lucene.search.FieldCache; // not great (circular); used only to purge FieldCache entry on close
/** @version $Id */
/**
* <p><b>NOTE:</b> This API is new and still experimental
* (subject to change suddenly in the next release)</p>

View File

@ -30,7 +30,6 @@ import org.apache.lucene.util.PriorityQueue;
* incompatible ways in the next release.
*
* @since 2.9
* @version $Id:
* @see Searcher#search(Query,Filter,int,Sort)
* @see FieldCache
*/

View File

@ -31,8 +31,6 @@ import org.apache.lucene.index.IndexReader;
* QueryFilter that matches, e.g., only documents modified within the last
* week. The QueryFilter and TermRangeQuery would only need to be reconstructed
* once per day.
*
* @version $Id:$
*/
public class QueryWrapperFilter extends Filter {
private Query query;

View File

@ -34,9 +34,6 @@ import java.util.List;
* <p/>
* This filter does not cache. See the {@link org.apache.lucene.search.CachingSpanFilter} for a wrapper that
* caches.
*
*
* @version $Id:$
*/
public class SpanQueryFilter extends SpanFilter {
protected SpanQuery query;

View File

@ -18,8 +18,6 @@
package org.apache.lucene.util; // from org.apache.solr.util rev 555343
/** A variety of high efficiency bit twiddling routines.
*
* @version $Id$
*/
public class BitUtil {

View File

@ -73,8 +73,6 @@ Test system: AMD Opteron, 64 bit linux, Sun Java 1.5_06 -server -Xbatch -Xmx64M
<th>1% full</th> <td>2.51</td> <td>3.49</td> <td>&nbsp;</td> <td>1.00</td> <td>&nbsp;</td> <td>1.02</td>
</tr>
</table>
* @version $Id$
*/
public class OpenBitSet extends DocIdSet implements Cloneable, Serializable {

View File

@ -22,8 +22,6 @@ import org.apache.lucene.search.DocIdSetIterator;
/** An iterator to iterate over set bits in an OpenBitSet.
* This is faster than nextSetBit() for iterating over the complete set of bits,
* especially when the density of the bits set is high.
*
* @version $Id$
*/
public class OpenBitSetIterator extends DocIdSetIterator {

View File

@ -17,8 +17,6 @@ package org.apache.lucene.util;
/** Floating point numbers smaller than 32 bits.
*
* @version $Id$
*/
public class SmallFloat {

View File

@ -28,8 +28,6 @@ import org.apache.lucene.store.FSDirectory;
* This tests the patch for issue #LUCENE-715 (IndexWriter does not
* release its write lock when trying to open an index which does not yet
* exist).
*
* @version $Id$
*/
public class TestIndexWriterLockRelease extends LuceneTestCase {

View File

@ -30,10 +30,6 @@ import org.apache.lucene.store.Directory;
import org.apache.lucene.store.RAMDirectory;
import org.apache.lucene.util.LuceneTestCase;
/**
* @version $Id$
*/
class RepeatingTokenStream extends TokenStream {
public int num;
TermAttribute termAtt;

View File

@ -33,10 +33,6 @@ import org.apache.lucene.document.Field;
* limitations under the License.
*/
/**
*
* @version $Id$
*/
public class TestScorerPerf extends LuceneTestCase {
Random r;
boolean validate = true; // set to false when doing performance testing

View File

@ -22,9 +22,6 @@ import java.util.BitSet;
import org.apache.lucene.search.DocIdSetIterator;
/**
* @version $Id$
*/
public class TestOpenBitSet extends LuceneTestCase {
Random rand;

View File

@ -18,9 +18,6 @@ package org.apache.lucene.util;
import java.util.Random;
/**
* @version $Id$
*/
public class TestSmallFloat extends LuceneTestCase {
// original lucene byteToFloat