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:
Diffstat (limited to 'mcs/class/System.Web/System.Web/SiteMapNodeCollection.cs')
-rw-r--r--mcs/class/System.Web/System.Web/SiteMapNodeCollection.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System.Web/System.Web/SiteMapNodeCollection.cs b/mcs/class/System.Web/System.Web/SiteMapNodeCollection.cs
index 13b1536666b..2c5bd5e1478 100644
--- a/mcs/class/System.Web/System.Web/SiteMapNodeCollection.cs
+++ b/mcs/class/System.Web/System.Web/SiteMapNodeCollection.cs
@@ -137,17 +137,17 @@ namespace System.Web
List.AddRange (value);
}
- public virtual bool Contains (SiteMapNode value)
+ public bool Contains (SiteMapNode value)
{
return this.List.Contains (value);
}
- public virtual void CopyTo (System.Web.SiteMapNode[] array, int index)
+ public void CopyTo (System.Web.SiteMapNode[] array, int index)
{
this.List.CopyTo (array, index);
}
- public virtual int IndexOf (SiteMapNode value)
+ public int IndexOf (SiteMapNode value)
{
return this.List.IndexOf (value);
}