Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3204/NHibernate/Impl
Modified Files:
SessionFactoryImpl.cs SessionImpl.cs
Log Message:
Minor xml comment changes and code formatting.
Index: SessionImpl.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/SessionImpl.cs,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** SessionImpl.cs 31 Oct 2004 04:31:00 -0000 1.46
--- SessionImpl.cs 8 Nov 2004 02:53:58 -0000 1.47
***************
*** 526,530 ****
get
{
! if (batcher==null) batcher = new NonBatchingBatcher(this); //TODO: should check something, no?
return batcher;
}
--- 526,533 ----
get
{
! if (batcher==null)
! {
! batcher = new NonBatchingBatcher(this);
! }
return batcher;
}
Index: SessionFactoryImpl.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/SessionFactoryImpl.cs,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** SessionFactoryImpl.cs 30 Oct 2004 14:41:54 -0000 1.35
--- SessionFactoryImpl.cs 8 Nov 2004 02:53:57 -0000 1.36
***************
*** 74,78 ****
[NonSerialized] private IDictionary imports;
[NonSerialized] private IDictionary properties;
! // TODO: figure out why this is commented out in nh and not h2.0.3
//[NonSerialized] private Templates templates;
[NonSerialized] private IInterceptor interceptor;
--- 74,79 ----
[NonSerialized] private IDictionary imports;
[NonSerialized] private IDictionary properties;
! // templates are related to XmlDatabinder - nothing like that yet
! // in NHibernate.
//[NonSerialized] private Templates templates;
[NonSerialized] private IInterceptor interceptor;
|