fixed scoped proxy unwrapping (SPR-6625)

This commit is contained in:
Juergen Hoeller 2010-01-05 12:52:28 +00:00
parent e328083d11
commit 9ca6003533
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public abstract class TransactionSynchronizationUtils {
}
if (aopAvailable) {
// now unwrap scoped proxy
resourceRef = ScopedProxyUnwrapper.unwrapIfNecessary(resource);
resourceRef = ScopedProxyUnwrapper.unwrapIfNecessary(resourceRef);
}
return resourceRef;
}