Skip to content

Commit 2d29fcd

Browse files
committed
Polish Javadoc for TransactionSynchronizationUtils
1 parent 5e56162 commit 2d29fcd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

spring-tx/src/main/java/org/springframework/transaction/support/TransactionSynchronizationUtils.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public abstract class TransactionSynchronizationUtils {
4848
* Check whether the given resource transaction manager refers to the given
4949
* (underlying) resource factory.
5050
* @see ResourceTransactionManager#getResourceFactory()
51-
* @see org.springframework.core.InfrastructureProxy#getWrappedObject()
51+
* @see InfrastructureProxy#getWrappedObject()
5252
*/
5353
public static boolean sameResourceFactory(ResourceTransactionManager tm, Object resourceFactory) {
5454
return unwrapResourceIfNecessary(tm.getResourceFactory()).equals(unwrapResourceIfNecessary(resourceFactory));
@@ -58,7 +58,8 @@ public static boolean sameResourceFactory(ResourceTransactionManager tm, Object
5858
* Unwrap the given resource handle if necessary; otherwise return
5959
* the given handle as-is.
6060
* @since 5.3.4
61-
* @see org.springframework.core.InfrastructureProxy#getWrappedObject()
61+
* @see InfrastructureProxy#getWrappedObject()
62+
* @see ScopedProxyUnwrapper#unwrapIfNecessary(Object)
6263
*/
6364
public static Object unwrapResourceIfNecessary(Object resource) {
6465
Assert.notNull(resource, "Resource must not be null");

0 commit comments

Comments
 (0)