Skip to content

Commit

Permalink
Merge branch 'develop' into feature/GH-511-add-support-for-search-in-…
Browse files Browse the repository at this point in the history
…queries
  • Loading branch information
jtnelson committed May 2, 2024
2 parents bbe199a + 3b806fd commit 1836785
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ public boolean verify(Write write, long timestamp) {
*
* @return the cache
*/
private <T> Cache<Composite, T> buildCache() {
private <T extends Record<?, ?, ?>> Cache<Composite, T> buildCache() {
Cache<Composite, T> cache = CacheBuilder.newBuilder()
.maximumSize(100000).softValues().build();
return new RunningAwareCache<>(cache);
Expand Down

0 comments on commit 1836785

Please sign in to comment.