reformat
authorJb Evain <jbevain@gmail.com>
Wed, 14 May 2008 14:30:20 +0000 (14:30 -0000)
committerJb Evain <jbevain@gmail.com>
Wed, 14 May 2008 14:30:20 +0000 (14:30 -0000)
svn path=/trunk/mcs/; revision=103190

mcs/class/System.Core/System.Linq/Queryable.cs

index b7db861f8d807bb3efd17af4e77952b3f1d82601..3daf0e05303d8741f8345680ccf75e62d03245b2 100644 (file)
@@ -74,23 +74,23 @@ namespace System.Linq {
                {
                        Check.SourceAndFunc (source, func);
                        return source.Provider.Execute<TAccumulate> (
-               StaticCall (
-                       MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate)),
-                       source.Expression,
-                       Expression.Constant (seed),
-                       Expression.Quote (func)));
+                               StaticCall (
+                                       MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate)),
+                                       source.Expression,
+                                       Expression.Constant (seed),
+                                       Expression.Quote (func)));
                }
 
                public static TResult Aggregate<TSource, TAccumulate, TResult> (this IQueryable<TSource> source, TAccumulate seed, Expression<Func<TAccumulate, TSource, TAccumulate>> func, Expression<Func<TAccumulate, TResult>> selector)
                {
                        Check.SourceAndFuncAndSelector (source, func, selector);
                        return source.Provider.Execute<TResult> (
-               StaticCall (
-                       MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate), typeof (TResult)),
-                       source.Expression,
-                       Expression.Constant (seed),
-                       Expression.Quote (func),
-                       Expression.Quote (selector)));
+                               StaticCall (
+                                       MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate), typeof (TResult)),
+                                       source.Expression,
+                                       Expression.Constant (seed),
+                                       Expression.Quote (func),
+                                       Expression.Quote (selector)));
                }
 
                #endregion