Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14069/NHibernate/Impl
Modified Files:
CollectionEntry.cs
Log Message:
removed explicit initialization since the framework is already initializing
the fields to those values.
Index: CollectionEntry.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/CollectionEntry.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** CollectionEntry.cs 6 Feb 2005 01:59:02 -0000 1.5
--- CollectionEntry.cs 14 Feb 2005 03:24:44 -0000 1.6
***************
*** 151,157 ****
public CollectionEntry( CollectionPersister loadedPersister, object loadedID, bool ignore )
{
! // dirty is initialized to false by runtime
//this.dirty = false;
! this.initialized = false;
this.loadedKey = loadedID;
SetLoadedPersister( loadedPersister );
--- 151,157 ----
public CollectionEntry( CollectionPersister loadedPersister, object loadedID, bool ignore )
{
! // dirty & initialized are set to false by the runtime
//this.dirty = false;
! //this.initialized = false;
this.loadedKey = loadedID;
SetLoadedPersister( loadedPersister );
|