From: Michael D. <mik...@us...> - 2004-08-09 03:09:35
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Type In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7602/NHibernate/Type Modified Files: AbstractType.cs ObjectType.cs Log Message: Added [Serializable] to match with h2.0.3 Index: AbstractType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Type/AbstractType.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** AbstractType.cs 10 Feb 2004 18:41:42 -0000 1.7 --- AbstractType.cs 9 Aug 2004 03:09:25 -0000 1.8 *************** *** 7,18 **** ! namespace NHibernate.Type { ! /// <summary> /// The base implementation of the <see cref="IType"/> interface. /// Mapping of the built in Type hierarchy. /// </summary> ! public abstract class AbstractType : IType { ! /// <summary> /// Gets a value indicating if the <see cref="AbstractType"/> is an <see cref="IAssociationType"/>. --- 7,19 ---- ! namespace NHibernate.Type ! { /// <summary> /// The base implementation of the <see cref="IType"/> interface. /// Mapping of the built in Type hierarchy. /// </summary> ! [Serializable] ! public abstract class AbstractType : IType ! { /// <summary> /// Gets a value indicating if the <see cref="AbstractType"/> is an <see cref="IAssociationType"/>. Index: ObjectType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Type/ObjectType.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ObjectType.cs 29 Apr 2004 14:00:54 -0000 1.5 --- ObjectType.cs 9 Aug 2004 03:09:25 -0000 1.6 *************** *** 131,138 **** [Serializable] ! public sealed class ObjectTypeCacheEntry { public System.Type clazz; public object id; ! public ObjectTypeCacheEntry(System.Type clazz, object id) { this.clazz = clazz; this.id = id; --- 131,140 ---- [Serializable] ! public sealed class ObjectTypeCacheEntry ! { public System.Type clazz; public object id; ! public ObjectTypeCacheEntry(System.Type clazz, object id) ! { this.clazz = clazz; this.id = id; |