Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/jca
In directory sc8-pr-cvs1:/tmp/cvs-serv947/hibernate/jca
Modified Files:
JCASessionImpl.java
Log Message:
* fixed a bug in SQLExpression
* fixed a bug in Expression.ge()
* improved proxy handling
* fixed problems with select new
* reworked import mechanism
* added <any> mappings
Index: JCASessionImpl.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/jca/JCASessionImpl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** JCASessionImpl.java 13 Mar 2003 03:16:01 -0000 1.4
--- JCASessionImpl.java 29 Mar 2003 04:08:47 -0000 1.5
***************
*** 253,255 ****
--- 253,259 ----
}
+ public boolean contains(Object object) {
+ return session.contains(object);
+ }
+
}
|