Suppress recently introduced warning

This commit is contained in:
Sam Brannen
2025-04-14 14:25:39 +02:00
parent d0966dfb58
commit 8f62a8f579

View File

@@ -450,7 +450,7 @@ public abstract class CacheAspectSupport extends AbstractCacheInvoker
return cacheHit;
}
@SuppressWarnings("unchecked")
@SuppressWarnings({ "unchecked", "rawtypes" })
@Nullable
private Object executeSynchronized(CacheOperationInvoker invoker, Method method, CacheOperationContexts contexts) {
CacheOperationContext context = contexts.get(CacheableOperation.class).iterator().next();