Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate
In directory sc8-pr-cvs1:/tmp/cvs-serv27994/sf/hibernate
Modified Files:
PropertyAccessException.java
Log Message:
integrated latest cglib + reflection optimizer
Index: PropertyAccessException.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/PropertyAccessException.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PropertyAccessException.java 20 Jan 2003 12:48:08 -0000 1.4
--- PropertyAccessException.java 15 Feb 2003 08:00:49 -0000 1.5
***************
*** 15,19 ****
private final boolean wasSetter;
! public PropertyAccessException(Exception root, String s, boolean wasSetter, Class persistentClass, String propertyName) {
super(s, root);
this.persistentClass = persistentClass;
--- 15,19 ----
private final boolean wasSetter;
! public PropertyAccessException(Throwable root, String s, boolean wasSetter, Class persistentClass, String propertyName) {
super(s, root);
this.persistentClass = persistentClass;
|