From: Michael D. <mik...@us...> - 2004-07-14 21:22:26
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9535/NHibernate/Persister Modified Files: NormalizedEntityPersister.cs Log Message: removed some TODO comments that no longer apply Index: NormalizedEntityPersister.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/NormalizedEntityPersister.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** NormalizedEntityPersister.cs 5 Jul 2004 19:19:00 -0000 1.19 --- NormalizedEntityPersister.cs 14 Jul 2004 21:22:17 -0000 1.20 *************** *** 282,288 **** this.propertyColumnSpans = new int[this.hydrateSpan]; - // TODO: SYNCHISSUE: in latest Hibernate version this is a HashSet not an array list. There are - // some local variables to do with naturalOrderPropertyTables and naturalOrderTableNames Hashtable thisClassProperties = new Hashtable(); object thisClassPropertiesObject = new object(); --- 282,287 ---- this.propertyColumnSpans = new int[this.hydrateSpan]; Hashtable thisClassProperties = new Hashtable(); + // just a dummy object for the value so I can treat Hashtable like a Set object thisClassPropertiesObject = new object(); *************** *** 994,998 **** { bool[] notNull = GetNotNullInsertableColumns(fields); - // TODO: this signature has not been built return Insert(fields, notNull, GenerateInsertStrings(true, notNull), obj, session); } --- 993,996 ---- |