mirror of https://github.com/apache/lucene.git
tiny whitespace and javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@347992 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bfde3257dc
commit
dea69e3360
|
@ -17,8 +17,8 @@ package org.apache.lucene.analysis;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A filter that replaces accented characters in the ISO Latin 1 character set by
|
* A filter that replaces accented characters in the ISO Latin 1 character set
|
||||||
* their unaccented equivalent. The case will not be altered.
|
* (ISO-8859-1) by their unaccented equivalent. The case will not be altered.
|
||||||
* <p>
|
* <p>
|
||||||
* For instance, 'à' will be replaced by 'a'.
|
* For instance, 'à' will be replaced by 'a'.
|
||||||
* <p>
|
* <p>
|
||||||
|
|
|
@ -23,6 +23,7 @@ import java.io.Reader;
|
||||||
* Emits the entire input as a single token.
|
* Emits the entire input as a single token.
|
||||||
*/
|
*/
|
||||||
public class KeywordTokenizer extends Tokenizer {
|
public class KeywordTokenizer extends Tokenizer {
|
||||||
|
|
||||||
private static final int DEFAULT_BUFFER_SIZE = 256;
|
private static final int DEFAULT_BUFFER_SIZE = 256;
|
||||||
|
|
||||||
private boolean done;
|
private boolean done;
|
||||||
|
|
Loading…
Reference in New Issue