From 5a194a2c8c957eec3770b299c1e351dbf018a764 Mon Sep 17 00:00:00 2001 From: jbevain Date: Wed, 7 Apr 2010 13:53:37 +0000 Subject: [PATCH] 2010-04-07 Jb Evain * EnumerableExecutor.cs: make ctor protected. git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@154958 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- class/System.Core/System.Linq/ChangeLog | 4 ++++ class/System.Core/System.Linq/EnumerableExecutor.cs | 3 +++ 2 files changed, 7 insertions(+) diff --git a/class/System.Core/System.Linq/ChangeLog b/class/System.Core/System.Linq/ChangeLog index f4be79aeb3..cc447c99f9 100644 --- a/class/System.Core/System.Linq/ChangeLog +++ b/class/System.Core/System.Linq/ChangeLog @@ -1,5 +1,9 @@ 2010-04-07 Jb Evain + * EnumerableExecutor.cs: make ctor protected. + +2010-04-07 Jb Evain + * EnumerableQuery_T.cs: implement. 2010-04-07 Jb Evain diff --git a/class/System.Core/System.Linq/EnumerableExecutor.cs b/class/System.Core/System.Linq/EnumerableExecutor.cs index 836fe1e0d3..7d7b16abbf 100644 --- a/class/System.Core/System.Linq/EnumerableExecutor.cs +++ b/class/System.Core/System.Linq/EnumerableExecutor.cs @@ -32,6 +32,9 @@ namespace System.Linq { public abstract class EnumerableExecutor { + protected EnumerableExecutor () + { + } } } -- 2.11.4.GIT