Skip to content
Snippets Groups Projects
Commit 2d49e9f2 authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

basic search uses RangeHelper method

parent 381e14ef
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ public class BasicSearch {
int taxonId = s.nextInt();
GeneralRange<Record> a0 = r -> 0;
GeneralRange<Record> a1 = r -> r.getTaxonId() - taxonId;//RangeHelper.taxonID(Bound.EQUALS, taxonId);
GeneralRange<Record> a1 = RangeHelper.taxonID(Bound.EQUALS, taxonId);
GeneralRange<Record> a2 = r -> 0;
GeneralRange<Record> a3 = r -> 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment