From: <fab...@us...> - 2011-05-23 19:07:10
|
Revision: 5863 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5863&view=rev Author: fabiomaulo Date: 2011-05-23 19:07:03 +0000 (Mon, 23 May 2011) Log Message: ----------- Just an adjustment, to avoid an cyclopean ProxyFactory instance Modified Paths: -------------- trunk/nhibernate/src/NHibernate/NHibernate.csproj trunk/nhibernate/src/NHibernate/Proxy/DefaultProxyFactory.cs Modified: trunk/nhibernate/src/NHibernate/NHibernate.csproj =================================================================== --- trunk/nhibernate/src/NHibernate/NHibernate.csproj 2011-05-23 15:23:00 UTC (rev 5862) +++ trunk/nhibernate/src/NHibernate/NHibernate.csproj 2011-05-23 19:07:03 UTC (rev 5863) @@ -39,7 +39,8 @@ <OutputPath>bin\Debug-2.0\</OutputPath> <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath> <IntermediateOutputPath>obj\Debug-2.0\</IntermediateOutputPath> - <DefineConstants>TRACE;DEBUG</DefineConstants> + <DefineConstants> + </DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <DocumentationFile>bin\Debug-2.0\NHibernate.XML</DocumentationFile> Modified: trunk/nhibernate/src/NHibernate/Proxy/DefaultProxyFactory.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Proxy/DefaultProxyFactory.cs 2011-05-23 15:23:00 UTC (rev 5862) +++ trunk/nhibernate/src/NHibernate/Proxy/DefaultProxyFactory.cs 2011-05-23 19:07:03 UTC (rev 5863) @@ -7,7 +7,7 @@ { public class DefaultProxyFactory : AbstractProxyFactory { - private static readonly ProxyFactory factory = new ProxyFactory(); + private readonly ProxyFactory factory = new ProxyFactory(); protected static readonly IInternalLogger log = LoggerProvider.LoggerFor(typeof (DefaultProxyFactory)); public override INHibernateProxy GetProxy(object id, ISessionImplementor session) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |