javadoc fixups

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2004-04-21 01:12:04 +00:00
parent 527503916a
commit d9684c7065
1 changed files with 2 additions and 4 deletions

View File

@ -39,7 +39,6 @@ public final class QueryTermExtractor
*
* @param query Query to extract term texts from
* @return an array of the terms used in a query, plus their weights.
* @throws IOException
*/
public static final WeightedTerm[] getTerms(Query query)
{
@ -52,9 +51,8 @@ public final class QueryTermExtractor
*
* @param query Query to extract term texts from
* @param prohibited <code>true</code> to extract "prohibited" terms, too
* @return an array of the terms used in a query, plus their weights.
* @throws IOException
*/
* @return an array of the terms used in a query, plus their weights.
*/
public static final WeightedTerm[] getTerms(Query query, boolean prohibited)
{
HashSet terms=new HashSet();