fix Bollean -> Boolean typo

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@770715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-05-01 15:34:43 +00:00
parent a5748695cc
commit ab1254b4e6
1 changed files with 3 additions and 3 deletions

View File

@ -303,16 +303,16 @@ final class BooleanScorer extends Scorer {
public final int size() { return SIZE; }
public Collector newCollector(int mask) {
return new BolleanScorerCollector(mask, this);
return new BooleanScorerCollector(mask, this);
}
}
private static final class BolleanScorerCollector extends Collector {
private static final class BooleanScorerCollector extends Collector {
private BucketTable bucketTable;
private int mask;
private Scorer scorer;
public BolleanScorerCollector(int mask, BucketTable bucketTable) {
public BooleanScorerCollector(int mask, BucketTable bucketTable) {
this.mask = mask;
this.bucketTable = bucketTable;
}