Remove compiler warning

Change-Id: Ia0d21ac289075d056973a7b73c03b9d7a47c2652
This commit is contained in:
Craig Bryant 2014-09-15 11:44:47 -06:00
parent d7876668a3
commit 2182e23cc5
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public final class InfluxDBMetricRepository extends InfluxRepository implements
private final SimpleDateFormat measurementTimeSimpleDateFormat = new
SimpleDateFormat("yyyy-MM-dd HH:mm:ss zzz");
private static final Sha1HashId BLANK_SHA_1_HASH_ID = new Sha1HashId(DigestUtils.sha(""));
private static final Set<Dim> EMPTY_DIM_TREE_SET = new TreeSet();
private static final Set<Dim> EMPTY_DIM_TREE_SET = new TreeSet<>();
@Inject
public InfluxDBMetricRepository(final MonPersisterConfiguration configuration,