HHH-6859 correct AbstractEntityManagerImpl#determineCacheStoreMode

This commit is contained in:
Brett Meyer 2013-10-14 13:23:20 -04:00
parent 94dd246bf4
commit 51508921a0

View File

@ -256,7 +256,7 @@ private CacheStoreMode currentCacheStoreMode() {
}
private CacheStoreMode determineCacheStoreMode(Map<String, Object> settings) {
return ( CacheStoreMode ) properties.get( AvailableSettings.SHARED_CACHE_STORE_MODE );
return ( CacheStoreMode ) settings.get( AvailableSettings.SHARED_CACHE_STORE_MODE );
}
private void setLockOptions(Map<String, Object> props, LockOptions options) {