Author: marek
Date: 2007-04-16 13:16:41 -0400 (Mon, 16 Apr 2007)
New Revision: 75780

Modified:
   trunk/mcs/class/System.Core/System.Linq/Enumerable.cs
Log:
Minor rename.

Modified: trunk/mcs/class/System.Core/System.Linq/Enumerable.cs
===================================================================
--- trunk/mcs/class/System.Core/System.Linq/Enumerable.cs       2007-04-16 
17:07:02 UTC (rev 75779)
+++ trunk/mcs/class/System.Core/System.Linq/Enumerable.cs       2007-04-16 
17:16:41 UTC (rev 75780)
@@ -681,9 +681,9 @@
 
         #region Except
 
-        public static IEnumerable<T> Except<T>(this IEnumerable<T> first, 
IEnumerable<T> second)
+        public static IEnumerable<TSource> Except<TSource>(this 
IEnumerable<TSource> first, IEnumerable<TSource> second)
         {
-            return Except<T>(first, second, null);
+            return Except(first, second, null);
         }
 
         public static IEnumerable<TSource> Except<TSource>(this 
IEnumerable<TSource> first, IEnumerable<TSource> second, 
IEqualityComparer<TSource> comparer)

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to