Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30860/Connection
Modified Files:
ConnectionProviderFactory.cs
Log Message:
Removed some code I did not realize was still commented out.
Index: ConnectionProviderFactory.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection/ConnectionProviderFactory.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ConnectionProviderFactory.cs 24 Jul 2004 20:43:22 -0000 1.5
--- ConnectionProviderFactory.cs 16 Aug 2004 05:10:20 -0000 1.6
***************
*** 40,46 ****
else
{
! throw new NotImplementedException("We have not implemented user supplied connections yet.");
! // connections = new UserSuppliedConnectionProvider();
! // connections = new SqlServerConnectionProvider();
}
connections.Configure(settings);
--- 40,44 ----
else
{
! connections = new UserSuppliedConnectionProvider();
}
connections.Configure(settings);
|