add "throws IOException" so that these analyzer compiles against Lucene 1.4 -- please tell me if I broke the encoding

of the special characters


git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150992 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-08-04 18:12:18 +00:00
parent 4006836a60
commit 07b4dfa01f
1 changed files with 7 additions and 4 deletions

View File

@ -63,6 +63,7 @@ import org.apache.lucene.analysis.standard.StandardFilter;
import org.apache.lucene.analysis.standard.StandardTokenizer;
import java.io.File;
import java.io.IOException;
import java.io.Reader;
import java.util.HashSet;
import java.util.Hashtable;
@ -142,9 +143,10 @@ public final class FrenchAnalyzer extends Analyzer {
/**
* Builds an analyzer with the given stop words.
* @throws IOException
*/
public FrenchAnalyzer(File stopwords) {
stoptable = new HashSet(WordlistLoader.getWordtable(stopwords).keySet());
public FrenchAnalyzer(File stopwords) throws IOException {
stoptable = new HashSet(WordlistLoader.getWordSet(stopwords));
}
/**
@ -163,9 +165,10 @@ public final class FrenchAnalyzer extends Analyzer {
/**
* Builds an exclusionlist from the words contained in the given file.
* @throws IOException
*/
public void setStemExclusionTable(File exclusionlist) {
excltable = new HashSet(WordlistLoader.getWordtable(exclusionlist).keySet());
public void setStemExclusionTable(File exclusionlist) throws IOException {
excltable = new HashSet(WordlistLoader.getWordSet(exclusionlist));
}
/**