From: <one...@us...> - 2002-11-27 22:38:07
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/impl In directory sc8-pr-cvs1:/tmp/cvs-serv31725/cirrus/hibernate/impl Modified Files: SessionFactoryObjectFactory.java Log Message: fixed bug in Hibernate.configure() Index: SessionFactoryObjectFactory.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/impl/SessionFactoryObjectFactory.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** SessionFactoryObjectFactory.java 30 Oct 2002 15:42:31 -0000 1.13 --- SessionFactoryObjectFactory.java 27 Nov 2002 22:38:04 -0000 1.14 *************** *** 126,129 **** --- 126,135 ---- } + /** + * Theoretically nonthreadsafe, but its only called by + * applications using <tt>Hibernate.configure()</tt> which + * is synchronized, so it shouldn't be a problem in + * practice. + */ public static void clear() { instances.clear(); |