From: <one...@us...> - 2003-05-07 15:09:09
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/impl In directory sc8-pr-cvs1:/tmp/cvs-serv18694/hibernate/impl Modified Files: SessionImpl.java Log Message: much better fix for problem with normalized mapping and querying associations Index: SessionImpl.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/impl/SessionImpl.java,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** SessionImpl.java 25 Apr 2003 05:56:33 -0000 1.39 --- SessionImpl.java 7 May 2003 15:09:05 -0000 1.40 *************** *** 429,434 **** public Batcher getBatcher() { if (batcher==null) batcher = factory.useJdbcBatch() ? ! (Batcher) new BatchingBatcher(this) : ! (Batcher) new NonBatchingBatcher(this); return batcher; --- 429,434 ---- public Batcher getBatcher() { if (batcher==null) batcher = factory.useJdbcBatch() ? ! (Batcher) new BatchingBatcher(this) : ! (Batcher) new NonBatchingBatcher(this); return batcher; |