Aligned ConcurrentMap declaration with 4.3.x branch

This commit is contained in:
Juergen Hoeller 2016-07-26 00:54:53 +02:00
parent 5cf8b695cb
commit e4def2f55d
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@
package org.springframework.transaction.interceptor;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
@ -86,7 +86,7 @@ public abstract class TransactionAspectSupport implements BeanFactoryAware, Init
new NamedThreadLocal<>("Current aspect-driven transaction");
private final Map<Object, PlatformTransactionManager> transactionManagerCache =
private final ConcurrentMap<Object, PlatformTransactionManager> transactionManagerCache =
new ConcurrentHashMap<>();
/**