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:
Daniel Naber 2005-11-21 21:41:43 +00:00
parent bfde3257dc
commit dea69e3360
3 changed files with 8 additions and 7 deletions

View File

@ -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, '&agrave;' will be replaced by 'a'. * For instance, '&agrave;' will be replaced by 'a'.
* <p> * <p>

View File

@ -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;