remove redundant cast

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1555719 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2014-01-06 11:24:34 +00:00
parent 75b0b5312c
commit a92ca0f717
1 changed files with 2 additions and 2 deletions

View File

@ -541,8 +541,8 @@ public class TestRangeFacetCounts extends FacetTestCase {
// Must truncate to float precision so that the
// drill-down counts (which use NRQ.newFloatRange)
// are correct:
min = (double) (float) min;
max = (double) (float) max;
min = (float) min;
max = (float) max;
boolean minIncl;
boolean maxIncl;