move from FQCN to import

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150632 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2004-11-09 15:12:16 +00:00
parent 8d45546b72
commit b708ac392e
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ package org.apache.lucene.analysis;
* limitations under the License.
*/
import java.io.IOException;
import java.io.Reader;
/** An abstract base class for simple, character-oriented tokenizers.*/
@ -44,7 +45,7 @@ public abstract class CharTokenizer extends Tokenizer {
}
/** Returns the next token in the stream, or null at EOS. */
public final Token next() throws java.io.IOException {
public final Token next() throws IOException {
int length = 0;
int start = offset;
while (true) {