ehatcher 2004/11/09 07:12:16 Modified: src/java/org/apache/lucene/analysis CharTokenizer.java Log: move from FQCN to import Revision Changes Path 1.6 +2 -1 jakarta-lucene/src/java/org/apache/lucene/analysis/CharTokenizer.java Index: CharTokenizer.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/analysis/CharTokenizer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- CharTokenizer.java 29 Mar 2004 22:48:00 -0000 1.5 +++ CharTokenizer.java 9 Nov 2004 15:12:16 -0000 1.6 @@ -16,6 +16,7 @@ * 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 @@ } /** 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) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]