Update of /cvsroot/springframework/spring/tiger/src/org/springframework/orm/jpa/support
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7834/tiger/src/org/springframework/orm/jpa/support
Modified Files:
SharedEntityManagerAdapter.java
Log Message:
renamed Assert's "isAssignableFrom" to "isAssignable"
Index: SharedEntityManagerAdapter.java
===================================================================
RCS file: /cvsroot/springframework/spring/tiger/src/org/springframework/orm/jpa/support/SharedEntityManagerAdapter.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** SharedEntityManagerAdapter.java 19 Apr 2006 21:23:21 -0000 1.6
--- SharedEntityManagerAdapter.java 19 Apr 2006 21:35:21 -0000 1.7
***************
*** 90,94 ****
public void setEntityManagerInterface(Class entityManagerInterface) {
Assert.notNull(entityManagerInterface, "entityManagerInterface must not be null");
! Assert.isAssignableFrom(EntityManager.class, entityManagerInterface);
this.entityManagerInterface = entityManagerInterface;
}
--- 90,94 ----
public void setEntityManagerInterface(Class entityManagerInterface) {
Assert.notNull(entityManagerInterface, "entityManagerInterface must not be null");
! Assert.isAssignable(EntityManager.class, entityManagerInterface);
this.entityManagerInterface = entityManagerInterface;
}
|