mirror of https://github.com/apache/lucene.git
- Made class non-public. http://issues.apache.org/jira/browse/LUCENE-564
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@405824 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cb15338e26
commit
67f3d7f262
|
@ -11,6 +11,9 @@ API Changes
|
|||
so Lucene can read its date fields from old indexes
|
||||
(Yonik Seeley & Grant Ingersoll)
|
||||
|
||||
2. DisjunctionSumScorer is no longer public.
|
||||
(Paul Elschot via Otis Gospodnetic)
|
||||
|
||||
Bug fixes
|
||||
|
||||
1. LUCENE-330: Fix issue of FilteredQuery not working properly within
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
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");
|
||||
* 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>.
|
||||
* 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. */
|
||||
private final int nrScorers;
|
||||
|
||||
|
|
Loading…
Reference in New Issue