mirror of https://github.com/apache/lucene.git
fixed javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@614894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bc1d7789ef
commit
1f0e88f186
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue