Return-Path: Delivered-To: apmail-jakarta-lucene-dev-archive@www.apache.org Received: (qmail 52076 invoked from network); 9 Nov 2004 15:12:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 9 Nov 2004 15:12:40 -0000 Received: (qmail 54138 invoked by uid 500); 9 Nov 2004 15:12:26 -0000 Delivered-To: apmail-jakarta-lucene-dev-archive@jakarta.apache.org Received: (qmail 53937 invoked by uid 500); 9 Nov 2004 15:12:22 -0000 Mailing-List: contact lucene-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Lucene Developers List" Reply-To: "Lucene Developers List" Delivered-To: mailing list lucene-dev@jakarta.apache.org Received: (qmail 53860 invoked by uid 500); 9 Nov 2004 15:12:21 -0000 Received: (qmail 53849 invoked by uid 99); 9 Nov 2004 15:12:21 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 09 Nov 2004 07:12:20 -0800 Received: (qmail 51846 invoked by uid 1419); 9 Nov 2004 15:12:16 -0000 Date: 9 Nov 2004 15:12:16 -0000 Message-ID: <20041109151216.51845.qmail@minotaur.apache.org> From: ehatcher@apache.org To: jakarta-lucene-cvs@apache.org Subject: cvs commit: jakarta-lucene/src/java/org/apache/lucene/analysis CharTokenizer.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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