From: Michael D. <mik...@us...> - 2005-02-14 03:30:59
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16443/NHibernate/Connection Modified Files: ConnectionProvider.cs Log Message: removed explicit initialization since the framework is already initializing the fields to those values. Index: ConnectionProvider.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection/ConnectionProvider.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ConnectionProvider.cs 30 Jan 2005 19:36:15 -0000 1.10 --- ConnectionProvider.cs 14 Feb 2005 03:30:51 -0000 1.11 *************** *** 14,19 **** { private static readonly ILog log = LogManager.GetLogger( typeof( ConnectionProvider ) ); ! private string connString = null; ! private IDriver driver = null; /// <summary> --- 14,19 ---- { private static readonly ILog log = LogManager.GetLogger( typeof( ConnectionProvider ) ); ! private string connString; ! private IDriver driver; /// <summary> |