Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14069/NHibernate/Engine
Modified Files:
RowSelection.cs
Log Message:
removed explicit initialization since the framework is already initializing
the fields to those values.
Index: RowSelection.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/RowSelection.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** RowSelection.cs 31 Dec 2004 17:36:41 -0000 1.4
--- RowSelection.cs 14 Feb 2005 03:24:43 -0000 1.5
***************
*** 12,16 ****
public static readonly int NoValue = -1;
! private int firstRow = 0;
private int maxRows = RowSelection.NoValue;
private int timeout = RowSelection.NoValue;
--- 12,17 ----
public static readonly int NoValue = -1;
! // framework defaults value to 0
! private int firstRow;
private int maxRows = RowSelection.NoValue;
private int timeout = RowSelection.NoValue;
|