Remove unused @SuppressWarnings

Eclipse Kepler says these are not necessary.

Change-Id: Ie7af85e512532b084a1a13df37792ffec11680fc
This commit is contained in:
Shawn Pearce
2013-11-28 22:19:05 -08:00
committed by David Ostrovsky
parent 42e2944d3a
commit 74966d5b04
2 changed files with 1 additions and 6 deletions

View File

@@ -111,7 +111,7 @@ public class DefaultCacheFactory implements MemoryCacheFactory {
return !Strings.isNullOrEmpty(cfg.getString("cache", name, var));
}
@SuppressWarnings({"rawtypes", "unchecked"})
@SuppressWarnings("unchecked")
private static <K, V> CacheBuilder<K, V> newCacheBuilder() {
return (CacheBuilder<K, V>) CacheBuilder.newBuilder();
}