mirror of https://github.com/apache/lucene.git
remove inadvertent addition of unused imports
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@396249 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ac675d682
commit
1898a8adbe
|
@ -25,8 +25,6 @@ import org.apache.solr.core.SolrCore;
|
|||
|
||||
import java.util.Map;
|
||||
import java.util.HashMap;
|
||||
import java.util.Arrays;
|
||||
import java.lang.reflect.Array;
|
||||
|
||||
/**
|
||||
* @author yonik
|
||||
|
@ -62,7 +60,7 @@ public class LocalSolrQueryRequest extends SolrQueryRequestBase {
|
|||
super(core);
|
||||
this.args=args;
|
||||
this.query=getStrParam(QUERY_NAME,null);
|
||||
this.qtype=getStrParam(QUERYTYPE_NAME,null);;
|
||||
this.qtype=getStrParam(QUERYTYPE_NAME,null);
|
||||
this.start=getIntParam(START_NAME,0);
|
||||
this.limit=getIntParam(ROWS_NAME,10);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue