HHH-4994 pass the properties variable
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18955 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
9f1444eb15
commit
a284638d01
|
@ -530,7 +530,7 @@ public abstract class AbstractEntityManagerImpl implements HibernateEntityManage
|
|||
}
|
||||
|
||||
public <T> T find(Class<T> entityClass, Object primaryKey, Map<String, Object> properties) {
|
||||
return find( entityClass, primaryKey, null, null );
|
||||
return find( entityClass, primaryKey, null, properties );
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
|
@ -654,7 +654,7 @@ public abstract class AbstractEntityManagerImpl implements HibernateEntityManage
|
|||
}
|
||||
|
||||
public void refresh(Object entity, Map<String, Object> properties) {
|
||||
refresh( entity, null, null );
|
||||
refresh( entity, null, properties );
|
||||
}
|
||||
|
||||
public void refresh(Object entity, LockModeType lockModeType) {
|
||||
|
|
Loading…
Reference in New Issue