From 1f0e88f186b6cd955c8f837aa93e6b2662960144 Mon Sep 17 00:00:00 2001 From: Grant Ingersoll Date: Thu, 24 Jan 2008 15:01:59 +0000 Subject: [PATCH] fixed javadoc git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@614894 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/lucene/analysis/Token.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/java/org/apache/lucene/analysis/Token.java b/src/java/org/apache/lucene/analysis/Token.java index 75962441275..d0507b2d18e 100644 --- a/src/java/org/apache/lucene/analysis/Token.java +++ b/src/java/org/apache/lucene/analysis/Token.java @@ -20,8 +20,6 @@ package org.apache.lucene.analysis; import org.apache.lucene.index.Payload; import org.apache.lucene.index.TermPositions; -import java.util.BitSet; - /** A Token is an occurence of a term from the text of a field. It consists of a term's text, the start and end offset of the term in the text of the field, and a type string. @@ -170,7 +168,7 @@ public class Token implements Cloneable { * @param text * @param start * @param end - * @param typ token type bits + * @param flags token type bits */ public Token(String text, int start, int end, int flags) { termText = text;