From: <fab...@us...> - 2009-03-05 12:54:31
|
Revision: 4115 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4115&view=rev Author: fabiomaulo Date: 2009-03-05 12:54:29 +0000 (Thu, 05 Mar 2009) Log Message: ----------- Minor Modified Paths: -------------- trunk/nhibernate/src/NHibernate.ByteCode.Spring/AbstractProxyFactory.cs trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactory.cs Modified: trunk/nhibernate/src/NHibernate.ByteCode.Spring/AbstractProxyFactory.cs =================================================================== --- trunk/nhibernate/src/NHibernate.ByteCode.Spring/AbstractProxyFactory.cs 2009-03-05 07:41:21 UTC (rev 4114) +++ trunk/nhibernate/src/NHibernate.ByteCode.Spring/AbstractProxyFactory.cs 2009-03-05 12:54:29 UTC (rev 4115) @@ -1,5 +1,4 @@ using System.Reflection; -using Common.Logging; using Iesi.Collections.Generic; using NHibernate.Engine; using NHibernate.Proxy; @@ -14,8 +13,6 @@ /// <author>Erich Eichinger (Spring.NET Team)</author> public abstract class AbstractProxyFactory : IProxyFactory { - protected readonly ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - protected string EntityName { get; private set; } protected System.Type PersistentClass { get; private set; } protected System.Type[] Interfaces { get; private set; } Modified: trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactory.cs =================================================================== --- trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactory.cs 2009-03-05 07:41:21 UTC (rev 4114) +++ trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactory.cs 2009-03-05 12:54:29 UTC (rev 4115) @@ -1,4 +1,5 @@ using System; +using Common.Logging; using NHibernate.Engine; using NHibernate.Proxy; @@ -12,6 +13,8 @@ /// <author>Erich Eichinger (Spring.NET Team)</author> public class ProxyFactory : AbstractProxyFactory { + private static readonly ILog log = LogManager.GetLogger(typeof(ProxyFactory)); + [Serializable] private class SerializableProxyFactory : global::Spring.Aop.Framework.ProxyFactory { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |