From: Michael D. <mik...@us...> - 2004-11-21 23:32:46
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Proxy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1408/Proxy Modified Files: HibernateProxy.cs LazyInitializer.cs Log Message: NHibernate is now CLSCompliant Index: LazyInitializer.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Proxy/LazyInitializer.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LazyInitializer.cs 22 Apr 2003 14:07:21 -0000 1.1 --- LazyInitializer.cs 21 Nov 2004 22:56:30 -0000 1.2 *************** *** 12,23 **** /// Summary description for LazyInitializer. /// </summary> ! public abstract class LazyInitializer { protected static readonly object INVOKE_IMPLEMENTATION = new object(); ! protected object target = null; ! protected object id; ! protected ISessionImplementor session; ! protected System.Type persistentClass; ! protected MethodInfo getIdentifierMethod; ! protected bool overridesEquals; public LazyInitializer(System.Type persistentClass, object id, MethodInfo getIdentifierMethod, ISessionImplementor session) { --- 12,25 ---- /// Summary description for LazyInitializer. /// </summary> ! public abstract class LazyInitializer ! { protected static readonly object INVOKE_IMPLEMENTATION = new object(); ! ! private object target = null; ! private object id; ! private ISessionImplementor session; ! private System.Type persistentClass; ! private MethodInfo getIdentifierMethod; ! private bool overridesEquals; public LazyInitializer(System.Type persistentClass, object id, MethodInfo getIdentifierMethod, ISessionImplementor session) { Index: HibernateProxy.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Proxy/HibernateProxy.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HibernateProxy.cs 7 Mar 2003 19:26:46 -0000 1.2 --- HibernateProxy.cs 21 Nov 2004 22:56:30 -0000 1.3 *************** *** 11,20 **** private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(HibernateProxy)); ! protected object target = null; ! protected object id; ! protected ISessionImplementor session; ! protected System.Type persistentClass; ! protected PropertyInfo identifierProperty; ! protected bool overridesEquals; private HibernateProxy(System.Type type, object id, PropertyInfo identifierProperty, ISessionImplementor session ) : base(type) { --- 11,20 ---- private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(HibernateProxy)); ! private object target = null; ! private object id; ! private ISessionImplementor session; ! private System.Type persistentClass; ! private PropertyInfo identifierProperty; ! private bool overridesEquals; private HibernateProxy(System.Type type, object id, PropertyInfo identifierProperty, ISessionImplementor session ) : base(type) { |