From: Peter S. <sz...@us...> - 2004-04-29 14:01:02
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Tool/hbm2net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32453/NHibernate/Tool/hbm2net Modified Files: ClassMapping.cs Log Message: Some small H2.0.3 compatibility fix Index: ClassMapping.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Tool/hbm2net/ClassMapping.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ClassMapping.cs 8 Apr 2004 15:51:57 -0000 1.11 --- ClassMapping.cs 29 Apr 2004 14:00:53 -0000 1.12 *************** *** 736,741 **** if ("map".Equals(xmlName)) { ! interfaceClass = typeof(System.Collections.SortedList).FullName; ! implementingClass = typeof(System.Collections.SortedList).FullName; } else if ("set".Equals(xmlName)) --- 736,741 ---- if ("map".Equals(xmlName)) { ! interfaceClass = typeof(System.Collections.IDictionary).FullName; ! implementingClass = typeof(System.Collections.IDictionary).FullName; } else if ("set".Equals(xmlName)) |