Skip to content

Commit 8f62a8f

Browse files
committed
Suppress recently introduced warning
1 parent d0966df commit 8f62a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: spring-context/src/main/java/org/springframework/cache/interceptor/CacheAspectSupport.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ private Object execute(CacheOperationInvoker invoker, Method method, CacheOperat
450450
return cacheHit;
451451
}
452452

453-
@SuppressWarnings("unchecked")
453+
@SuppressWarnings({ "unchecked", "rawtypes" })
454454
@Nullable
455455
private Object executeSynchronized(CacheOperationInvoker invoker, Method method, CacheOperationContexts contexts) {
456456
CacheOperationContext context = contexts.get(CacheableOperation.class).iterator().next();

0 commit comments

Comments
 (0)