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:
Emmanuel Bernard 2010-03-10 10:37:27 +00:00
parent 9f1444eb15
commit a284638d01
1 changed files with 2 additions and 2 deletions

View File

@ -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) {