Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7576/src/NHibernate/Engine
Modified Files:
ICollectionSnapshot.cs
Log Message:
Modified collection snapshots to be ICollections instead of objects (not so generic, but all of them are ICollections anyway).
Fixed a bug in Set.InitializeFromCache
Index: ICollectionSnapshot.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/ICollectionSnapshot.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ICollectionSnapshot.cs 6 Feb 2005 01:58:57 -0000 1.6
--- ICollectionSnapshot.cs 9 Apr 2005 12:51:06 -0000 1.7
***************
*** 1,2 ****
--- 1,4 ----
+ using System.Collections;
+
namespace NHibernate.Engine
{
***************
*** 23,27 ****
/// ie - the snapshot of an IList will return an IList.
/// </remarks>
! object Snapshot { get; }
/// <summary>
--- 25,29 ----
/// ie - the snapshot of an IList will return an IList.
/// </remarks>
! ICollection Snapshot { get; }
/// <summary>
|