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:
authorSebastien Pouliot <sebastien@ximian.com>2005-11-30 17:36:10 +0300
committerSebastien Pouliot <sebastien@ximian.com>2005-11-30 17:36:10 +0300
commit2b1486b90baa8d3453ff5454b97d8c2759e04492 (patch)
treebd35186d707f04712b9488c6c81448401e8a723b /mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs
parenta2961a9b70e7320b8c26c97260d8bbc72244ec5d (diff)
2005-11-30 Sebastien Pouliot <sebastien@ximian.com>
* KeyedList.cs: Fixed for IOrderedDictionary change in 2.0 final. Now internal. * KeyedListEnumerator.cs: Now internal. svn path=/trunk/mcs/; revision=53681
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs b/mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs
index 8abe067aadc..3a28e6341a3 100644
--- a/mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs
+++ b/mcs/class/System.Web/System.Web.UI/KeyedListEnumerator.cs
@@ -32,7 +32,7 @@ using System.Collections;
namespace System.Web.UI
{
- public class KeyedListEnumerator : IDictionaryEnumerator
+ internal class KeyedListEnumerator : IDictionaryEnumerator
{
private int index = -1;
private ArrayList objs;