Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28506/Connection
Modified Files:
ConnectionProviderFactory.cs
Log Message:
modified Factory/Helper classes to be sealed since they are not
extendable or creatable.
Index: ConnectionProviderFactory.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection/ConnectionProviderFactory.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ConnectionProviderFactory.cs 16 Aug 2004 05:10:20 -0000 1.6
--- ConnectionProviderFactory.cs 22 Nov 2004 03:52:17 -0000 1.7
***************
*** 11,15 ****
/// Instanciates a connection provider given configuration properties.
/// </summary>
! public class ConnectionProviderFactory
{
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(ConnectionProviderFactory));
--- 11,15 ----
/// Instanciates a connection provider given configuration properties.
/// </summary>
! public sealed class ConnectionProviderFactory
{
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(ConnectionProviderFactory));
|