Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2008-05-15 21:07:16 +0400
committerJb Evain <jbevain@gmail.com>2008-05-15 21:07:16 +0400
commit89cdb0bc5656cd91824a6002e0894a9d3d469cab (patch)
tree673c034629e43792dbcff41a256f4c1fc82d1916 /mcs/class/System.Core/System.Linq/ChangeLog
parentf60e51b6be091571b7f469aea5f20587f08b02b9 (diff)
2008-05-15 Jb Evain <jbevain@novell.com>
* QueryableEnumerable.cs: Make that the first expression is a constant of itself, and not a constant of the source enumerable. * QueryableTransformer.cs: On a constant, transform a QueryableEnumerable into the enumerable. * Queryable.cs: use new constructor. svn path=/trunk/mcs/; revision=103303
Diffstat (limited to 'mcs/class/System.Core/System.Linq/ChangeLog')
-rw-r--r--mcs/class/System.Core/System.Linq/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/class/System.Core/System.Linq/ChangeLog b/mcs/class/System.Core/System.Linq/ChangeLog
index 5fe5a8f2c1a..1c9402857bb 100644
--- a/mcs/class/System.Core/System.Linq/ChangeLog
+++ b/mcs/class/System.Core/System.Linq/ChangeLog
@@ -1,5 +1,13 @@
2008-05-15 Jb Evain <jbevain@novell.com>
+ * QueryableEnumerable.cs: Make that the first expression is a constant
+ of itself, and not a constant of the source enumerable.
+ * QueryableTransformer.cs: On a constant, transform a QueryableEnumerable
+ into the enumerable.
+ * Queryable.cs: use new constructor.
+
+2008-05-15 Jb Evain <jbevain@novell.com>
+
* QueryableTransformer.cs, QueryableEnumerable.cs: coding style plus
some good refactorings.