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:
Chris M. Hostetter 2011-04-20 22:46:06 +00:00
parent afe7a54112
commit 1c75ae2fbb
3 changed files with 4 additions and 2 deletions

View File

@ -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
---------------------- ----------------------

View File

@ -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;

View File

@ -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);
} }