Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13890/Mapping
Modified Files:
Set.cs
Log Message:
minor mods with SortedSet - removed a ctor and made property Comparer read only because SortedList does not have a way to change the Comparer after being initialized.
Index: Set.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Set.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Set.cs 10 Feb 2004 18:35:30 -0000 1.2
--- Set.cs 8 Apr 2004 21:11:32 -0000 1.3
***************
*** 39,43 ****
public override System.Type WrapperClass {
get {
- //TODO: modify when added implementation of sorted set
return IsSorted ?
typeof(NCollection.SortedSet) :
--- 39,42 ----
|