import and whitespace cleanup only

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@478355 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2006-11-22 22:45:23 +00:00
parent dab153b256
commit a1966d93c7
1 changed files with 13 additions and 18 deletions

View File

@ -15,21 +15,23 @@
*/
package org.apache.lucene.search.similar;
import java.io.*;
import java.util.*;
import java.net.*;
import java.io.IOException;
import java.io.StringReader;
import java.util.HashSet;
import java.util.Set;
import org.apache.lucene.analysis.*;
import org.apache.lucene.analysis.standard.*;
import org.apache.lucene.document.*;
import org.apache.lucene.search.*;
import org.apache.lucene.index.*;
import org.apache.lucene.util.*;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.BooleanClause;
import org.apache.lucene.search.BooleanQuery;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.TermQuery;
/**
* Simple similarity measures.
*
*
* @see MoreLikeThis
*/
public final class SimilarityQueries
@ -49,7 +51,6 @@ public final class SimilarityQueries
* need to then ignore that.
*
* <p>
*
* So, if you have a code fragment like this:
* <br>
* <code>
@ -57,8 +58,6 @@ public final class SimilarityQueries
* </code>
*
* <p>
*
* The query returned, in string form, will be <code>'(i use lucene to search fast searchers are good')</code>.
*
* <p>
@ -72,10 +71,6 @@ public final class SimilarityQueries
* {@link org.apache.lucene.search.BooleanQuery.TooManyClauses BooleanQuery.TooManyClauses}, the
* query as it is will be returned.
*
*
*
*
*
* @param body the body of the document you want to find similar documents to
* @param a the analyzer to use to parse the body
* @param field the field you want to search on, probably something like "contents" or "body"