Skip to content

Commit

Permalink
per Jim, remove minScore and numResult parameters for round three ESOR
Browse files Browse the repository at this point in the history
testing.
  • Loading branch information
leinfelder committed Mar 25, 2016
1 parent 883eeb5 commit 0ad6920
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ private List<ConceptItem> lookupEsor(String query) throws Exception {
//query = query.replaceAll("\"", "");
//String uriStr = REST_URL + "?query=" + URLEncoder.encode(query, "UTF-8");
String uriStr = REST_URL;
uriStr += "?minScore=2&numResult=10";
uriStr += "&query=" + query;
//uriStr += "?minScore=2&numResult=10";
uriStr += "?query=" + query;
log.debug("uriStr=" + uriStr);

HttpGet method = new HttpGet(uriStr);
Expand Down

0 comments on commit 0ad6920

Please sign in to comment.