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:
Erik Hatcher 2006-04-23 10:07:50 +00:00
parent 8ac675d682
commit 1898a8adbe
1 changed files with 1 additions and 3 deletions

View File

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