mirror of https://github.com/apache/lucene.git
LUCENE-4122: remove stale Payload references in javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1348212 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4efdbdb2a8
commit
28cc18d23d
|
@ -118,7 +118,6 @@ import org.apache.lucene.util.BytesRef;
|
|||
{@link CharSequence} interface introduced by the interface {@link org.apache.lucene.analysis.tokenattributes.CharTermAttribute}.
|
||||
This method now only prints the term text, no additional information anymore.
|
||||
</p>
|
||||
@see org.apache.lucene.index.Payload
|
||||
*/
|
||||
public class Token extends CharTermAttributeImpl
|
||||
implements TypeAttribute, PositionIncrementAttribute,
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.lucene.util.Attribute;
|
|||
import org.apache.lucene.util.BytesRef;
|
||||
|
||||
/**
|
||||
* The payload of a Token. See also {@link Payload}.
|
||||
* The payload of a Token.
|
||||
*/
|
||||
public interface PayloadAttribute extends Attribute {
|
||||
/**
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.lucene.util.AttributeImpl;
|
|||
import org.apache.lucene.util.BytesRef;
|
||||
|
||||
/**
|
||||
* The payload of a Token. See also {@link Payload}.
|
||||
* The payload of a Token.
|
||||
*/
|
||||
public class PayloadAttributeImpl extends AttributeImpl implements PayloadAttribute, Cloneable {
|
||||
private BytesRef payload;
|
||||
|
|
Loading…
Reference in New Issue