mirror of https://github.com/apache/lucene.git
remove periods from eg and ie - if its in the first sentence, it screws up the javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@806221 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
57a8bb31cb
commit
20f47b453b
|
@ -253,7 +253,7 @@ public abstract class TokenStream extends AttributeSource {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Consumers (e. g. the indexer) use this method to advance the stream
|
* Consumers (eg the indexer) use this method to advance the stream
|
||||||
* to the next token. Implementing classes must implement this method
|
* to the next token. Implementing classes must implement this method
|
||||||
* and update the appropriate {@link AttributeImpl}s with content of the
|
* and update the appropriate {@link AttributeImpl}s with content of the
|
||||||
* next token.
|
* next token.
|
||||||
|
@ -290,12 +290,12 @@ public abstract class TokenStream extends AttributeSource {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method is called by the consumer after the last token has been consumed,
|
* This method is called by the consumer after the last token has been consumed,
|
||||||
* i.e. after {@link #incrementToken()} returned <code>false</code> (using the new TokenStream API)
|
* ie after {@link #incrementToken()} returned <code>false</code> (using the new TokenStream API)
|
||||||
* or after {@link #next(Token)} or {@link #next()} returned <code>null</code> (old TokenStream API).
|
* or after {@link #next(Token)} or {@link #next()} returned <code>null</code> (old TokenStream API).
|
||||||
* <p/>
|
* <p/>
|
||||||
* This method can be used to perform any end-of-stream operations, such as setting the final
|
* This method can be used to perform any end-of-stream operations, such as setting the final
|
||||||
* offset of a stream. The final offset of a stream might differ from the offset of the last token
|
* offset of a stream. The final offset of a stream might differ from the offset of the last token
|
||||||
* e.g. in case one or more whitespaces followed after the last token, but a {@link WhitespaceTokenizer}
|
* eg in case one or more whitespaces followed after the last token, but a {@link WhitespaceTokenizer}
|
||||||
* was used.
|
* was used.
|
||||||
*
|
*
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
|
|
Loading…
Reference in New Issue