From: <te...@us...> - 2008-11-16 22:38:04
|
Revision: 3913 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3913&view=rev Author: tehlike Date: 2008-11-16 22:37:57 +0000 (Sun, 16 Nov 2008) Log Message: ----------- Typo correction (NH-1572) by Gennadii Donchyts Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Type/AbstractType.cs Modified: trunk/nhibernate/src/NHibernate/Type/AbstractType.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Type/AbstractType.cs 2008-11-16 22:22:59 UTC (rev 3912) +++ trunk/nhibernate/src/NHibernate/Type/AbstractType.cs 2008-11-16 22:37:57 UTC (rev 3913) @@ -241,7 +241,7 @@ public virtual int Compare(object x, object y, EntityMode? entityMode) { IComparable xComp = x as IComparable; - IComparable yComp = x as IComparable; + IComparable yComp = y as IComparable; if (xComp != null) return xComp.CompareTo(y); if (yComp != null) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |