Skip to content

Commit 21864c8

Browse files
committed
Suppress warning
1 parent 0b97cc9 commit 21864c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionAspectSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ public ReactiveTransactionSupport(ReactiveAdapter adapter) {
817817
this.adapter = adapter;
818818
}
819819

820-
@SuppressWarnings("unchecked")
820+
@SuppressWarnings({ "unchecked", "rawtypes" })
821821
public Object invokeWithinTransaction(Method method, @Nullable Class<?> targetClass, InvocationCallback invocation) {
822822
// If the transaction attribute is null, the method is non-transactional.
823823
TransactionAttributeSource tas = getTransactionAttributeSource();

0 commit comments

Comments
 (0)