Fix compile error in Eclipse 4.3.

The method dimEquals(String, String) is ambiguous for the type DimFilters.
This commit is contained in:
Albert Strasheim 2013-11-04 21:23:13 -08:00
parent 76732c25f8
commit 1589909b9d
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ public class IncrementalIndexStorageAdapterTest
.addDimension("billy") .addDimension("billy")
.addDimension("sally") .addDimension("sally")
.addAggregator(new LongSumAggregatorFactory("cnt", "cnt")) .addAggregator(new LongSumAggregatorFactory("cnt", "cnt"))
.setDimFilter(DimFilters.dimEquals("sally", null)) .setDimFilter(DimFilters.dimEquals("sally", (String) null))
.build(), .build(),
new IncrementalIndexStorageAdapter(index) new IncrementalIndexStorageAdapter(index)
); );