remove incorrect use of generics in non-generified method call

This commit is contained in:
Dave Brosius 2014-06-02 23:36:21 -04:00
parent 709b9fc319
commit 62d9c43676
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public class FileCacheService
}
};
cache = CacheBuilder.<String, Queue<RandomAccessReader>>newBuilder()
cache = CacheBuilder.newBuilder()
.expireAfterAccess(AFTER_ACCESS_EXPIRATION, TimeUnit.MILLISECONDS)
.concurrencyLevel(DatabaseDescriptor.getConcurrentReaders())
.removalListener(onRemove)