git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@405824 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2006-05-12 18:29:51 +00:00
parent cb15338e26
commit 67f3d7f262
2 changed files with 5 additions and 2 deletions

View File

@ -11,6 +11,9 @@ API Changes
so Lucene can read its date fields from old indexes so Lucene can read its date fields from old indexes
(Yonik Seeley & Grant Ingersoll) (Yonik Seeley & Grant Ingersoll)
2. DisjunctionSumScorer is no longer public.
(Paul Elschot via Otis Gospodnetic)
Bug fixes Bug fixes
1. LUCENE-330: Fix issue of FilteredQuery not working properly within 1. LUCENE-330: Fix issue of FilteredQuery not working properly within

View File

@ -1,7 +1,7 @@
package org.apache.lucene.search; package org.apache.lucene.search;
/** /**
* Copyright 2005 The Apache Software Foundation * Copyright 2006 The Apache Software Foundation
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import org.apache.lucene.util.PriorityQueue;
/** A Scorer for OR like queries, counterpart of Lucene's <code>ConjunctionScorer</code>. /** A Scorer for OR like queries, counterpart of Lucene's <code>ConjunctionScorer</code>.
* This Scorer implements {@link Scorer#skipTo(int)} and uses skipTo() on the given Scorers. * This Scorer implements {@link Scorer#skipTo(int)} and uses skipTo() on the given Scorers.
*/ */
public class DisjunctionSumScorer extends Scorer { class DisjunctionSumScorer extends Scorer {
/** The number of subscorers. */ /** The number of subscorers. */
private final int nrScorers; private final int nrScorers;