Bug 10670 fix.
[mono.git] / mcs / class / System / System.Text.RegularExpressions / GroupCollection.cs
index fa67d937da47e1170022e1b607bc264399a6fbd9..5ff2383c9b9e372f8ea80ebf59bda2f5cdf25608 100644 (file)
@@ -46,7 +46,7 @@ namespace System.Text.RegularExpressions
                        list = new Group [n];
                }
 
-               public virtual int Count {
+               public int Count {
                        get { return list.Length; }
                }
 
@@ -54,7 +54,7 @@ namespace System.Text.RegularExpressions
                        get { return true; }
                }
 
-               public virtual bool IsSynchronized {
+               public bool IsSynchronized {
                        get { return false; }
                }
 
@@ -86,16 +86,16 @@ namespace System.Text.RegularExpressions
                        }
                }
 
-               public virtual object SyncRoot {
+               public object SyncRoot {
                        get { return list; }
                }
 
-               public virtual void CopyTo (Array array, int index)
+               public void CopyTo (Array array, int index)
                {
                        list.CopyTo (array, index);
                }
 
-               public virtual IEnumerator GetEnumerator ()
+               public IEnumerator GetEnumerator ()
                {
                        return list.GetEnumerator ();
                }