You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by eh...@apache.org on 2004/11/09 16:12:16 UTC

cvs commit: jakarta-lucene/src/java/org/apache/lucene/analysis CharTokenizer.java

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: lucene-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: lucene-dev-help@jakarta.apache.org