don't declare an Exception that can never be thrown

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150576 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-10-06 21:01:55 +00:00
parent aca15c3e1d
commit c37a40f444
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ import org.apache.lucene.index.*;
final class ExactPhraseScorer extends PhraseScorer {
ExactPhraseScorer(Weight weight, TermPositions[] tps, int[] positions, Similarity similarity,
byte[] norms) throws IOException {
byte[] norms) {
super(weight, tps, positions, similarity, norms);
}