From: Michael D. <mik...@us...> - 2005-02-06 01:59:14
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Type In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26787/Type Modified Files: PersistentCollectionType.cs Log Message: sergey's patch for the visitor pattern from h2.1. Index: PersistentCollectionType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Type/PersistentCollectionType.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** PersistentCollectionType.cs 1 Jan 2005 03:37:34 -0000 1.18 --- PersistentCollectionType.cs 6 Feb 2005 01:59:02 -0000 1.19 *************** *** 93,96 **** --- 93,97 ---- } + /* /// <summary> /// *************** *** 124,127 **** --- 125,129 ---- } + */ /// <summary> *************** *** 310,316 **** else { ! // h2.1 changed this to use sesion.GetCollection( role, value, owner ) and ! // move the impl of GetCollection from this class to the ISession. ! return GetCollection( value, owner, session ); } } --- 312,316 ---- else { ! return session.GetCollection( role, value, owner ); } } |