- Moved from o.a.s.request to o.a.s.handler package

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@521129 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2007-03-22 06:09:00 +00:00
parent 80314c1564
commit dd7864ac11
1 changed files with 5 additions and 3 deletions

View File

@ -15,15 +15,17 @@
* limitations under the License.
*/
package org.apache.solr.request;
package org.apache.solr.handler;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.spell.Dictionary;
import org.apache.lucene.search.spell.LuceneDictionary;
import org.apache.lucene.search.spell.SpellChecker;
import org.apache.lucene.store.FSDirectory;
import org.apache.solr.core.SolrCore;
import org.apache.solr.handler.RequestHandlerBase;
import org.apache.solr.request.SolrParams;
import org.apache.solr.request.SolrQueryRequest;
import org.apache.solr.request.SolrQueryResponse;
import org.apache.solr.util.NamedList;
import java.io.IOException;