Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20499/NHibernate.DomainModel
Modified Files:
Baz.cs
Log Message:
Removed code that was commented out instead of deleted originally.
Index: Baz.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Baz.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Baz.cs 26 Apr 2004 03:47:32 -0000 1.4
--- Baz.cs 28 Apr 2004 14:17:10 -0000 1.5
***************
*** 232,237 ****
/// Holder for stringSet
/// </summary>
! //private System.Collections.IList _stringSet;
! private System.Collections.IDictionary _stringSet;
/// <summary>
--- 232,236 ----
/// Holder for stringSet
/// </summary>
! private System.Collections.IDictionary _stringSet;
/// <summary>
***************
*** 552,556 ****
/// Get/set for stringSet
/// </summary>
- //public System.Collections.IList stringSet
public System.Collections.IDictionary stringSet
{
--- 551,554 ----
***************
*** 704,709 ****
public void setDefaults()
{
- // stringSet = new ArrayList();
- // stringSet.Add("foo"); stringSet.Add("bar"); stringSet.Add("baz");
stringSet = new Hashtable();
stringSet.Add("foo", new object());
--- 702,705 ----
***************
*** 716,720 ****
stringDateMap.Add( "big bang", new DateTime(0) );
ArrayList list = new ArrayList();
! list.AddRange(stringSet.Keys); // stringSet);
stringList = list;
intArray = new int[] { 1,3,3,7 };
--- 712,716 ----
stringDateMap.Add( "big bang", new DateTime(0) );
ArrayList list = new ArrayList();
! list.AddRange(stringSet.Keys);
stringList = list;
intArray = new int[] { 1,3,3,7 };
***************
*** 744,748 ****
bag.Add("duplicate");
bag.Add("unique");
! //cached = new ArrayList();
cached = new SortedList();
--- 740,744 ----
bag.Add("duplicate");
bag.Add("unique");
!
cached = new SortedList();
|