Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17186/src/NHibernate/Impl
Modified Files:
FilterImpl.cs SessionFactoryImpl.cs
Removed Files:
ScrollableResultsImpl.cs
Log Message:
NH-37: removed IScrollableResults
removed some commented out code for old properties.
Index: SessionFactoryImpl.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/SessionFactoryImpl.cs,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** SessionFactoryImpl.cs 29 Oct 2004 05:58:06 -0000 1.34
--- SessionFactoryImpl.cs 30 Oct 2004 14:41:54 -0000 1.35
***************
*** 459,471 ****
}
- // public bool UseAdoBatch
- // {
- // get { return adoBatchSize > 0; }
- // }
-
- // public int ADOBatchSize {
- // get { return adoBatchSize; }
- // }
-
public bool EnableJoinedFetch
{
--- 459,462 ----
***************
*** 473,480 ****
}
- // public bool UseScrollableResultSets {
- // get { return useScrollableResultSets; }
- // }
-
public string GetNamedQuery(string name)
{
--- 464,467 ----
Index: FilterImpl.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/FilterImpl.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** FilterImpl.cs 29 Mar 2004 04:03:17 -0000 1.6
--- FilterImpl.cs 30 Oct 2004 14:41:54 -0000 1.7
***************
*** 34,42 ****
}
- public IScrollableResults Scroll()
- {
- throw new NotImplementedException("Can't Scroll Filters");
- }
-
private IType[] TypeArray()
{
--- 34,37 ----
--- ScrollableResultsImpl.cs DELETED ---
|