Polish method parameter name

The parameter type is `TransactionManager` not `PlatformTransactionManager`.

Closes gh-36702

Signed-off-by: Yanming Zhou <zhouyanming@gmail.com>
This commit is contained in:
Yanming Zhou
2026-09-03 13:45:46 +02:00
committed by GitHub
parent 351a6d8f61
commit 94458c05e0
@@ -73,14 +73,14 @@ public class TransactionInterceptor extends TransactionAspectSupport
/**
* Create a new TransactionInterceptor.
* @param ptm the default transaction manager to perform the actual transaction management
* @param tm the default transaction manager to perform the actual transaction management
* @param tas the attribute source to be used to find transaction attributes
* @since 5.2.5
* @see #setTransactionManager
* @see #setTransactionAttributeSource
*/
public TransactionInterceptor(TransactionManager ptm, TransactionAttributeSource tas) {
setTransactionManager(ptm);
public TransactionInterceptor(TransactionManager tm, TransactionAttributeSource tas) {
setTransactionManager(tm);
setTransactionAttributeSource(tas);
}