From: <one...@us...> - 2003-04-02 01:12:27
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/engine In directory sc8-pr-cvs1:/tmp/cvs-serv28160/hibernate/engine Modified Files: SessionImplementor.java Log Message: * fixed a theoretical problem with caching and queued adds * fixed a real problem with sorted sets * re-enabled two-phase loading for sets Index: SessionImplementor.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/engine/SessionImplementor.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** SessionImplementor.java 29 Mar 2003 04:08:46 -0000 1.9 --- SessionImplementor.java 2 Apr 2003 01:12:20 -0000 1.10 *************** *** 63,69 **** public void initialize(PersistentCollection collection, boolean writing) throws HibernateException, SQLException; /** ! * Is this the readonly end of a bidirectional association? */ ! public boolean isCollectionReadOnly(PersistentCollection collection); /** --- 63,69 ---- public void initialize(PersistentCollection collection, boolean writing) throws HibernateException, SQLException; /** ! * Is this the "inverse" end of a bidirectional association? */ ! public boolean isInverseCollection(PersistentCollection collection); /** |