mirror of https://github.com/apache/lucene.git
SOLR-2461: QuerySenderListener and AbstractSolrEventListener are now public
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1095545 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
afe7a54112
commit
1c75ae2fbb
|
@ -223,6 +223,8 @@ Other Changes
|
||||||
and publish binary, javadoc, and source test-framework jars.
|
and publish binary, javadoc, and source test-framework jars.
|
||||||
(Drew Farris, Robert Muir, Steve Rowe)
|
(Drew Farris, Robert Muir, Steve Rowe)
|
||||||
|
|
||||||
|
* SOLR-2461: QuerySenderListener and AbstractSolrEventListener are
|
||||||
|
now public (hossman)
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
----------------------
|
----------------------
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.apache.solr.search.SolrIndexSearcher;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
class AbstractSolrEventListener implements SolrEventListener {
|
public class AbstractSolrEventListener implements SolrEventListener {
|
||||||
protected final SolrCore core;
|
protected final SolrCore core;
|
||||||
public AbstractSolrEventListener(SolrCore core) {
|
public AbstractSolrEventListener(SolrCore core) {
|
||||||
this.core = core;
|
this.core = core;
|
||||||
|
|
|
@ -32,7 +32,7 @@ import java.util.List;
|
||||||
/**
|
/**
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
class QuerySenderListener extends AbstractSolrEventListener {
|
public class QuerySenderListener extends AbstractSolrEventListener {
|
||||||
public QuerySenderListener(SolrCore core) {
|
public QuerySenderListener(SolrCore core) {
|
||||||
super(core);
|
super(core);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue