Merge pull request #1695 from gregoryyoung/master
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlTableRowCollection.cs
index 6d11b346a533ee731489f6ff570bce698ef4c503..1402256f90b5575c9cc358090ee99a9859bd2956 100644 (file)
@@ -33,17 +33,15 @@ namespace System.Web.UI.HtmlControls {
 
        // CAS - no InheritanceDemand here as the class is sealed
        [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-       public sealed class HtmlTableRowCollection : ICollection, IEnumerable {
-
-               private ControlCollection cc;
-
+       public sealed class HtmlTableRowCollection : ICollection, IEnumerable 
+       {
+               ControlCollection cc;
 
                internal HtmlTableRowCollection (HtmlTable table)
                {
                        cc = table.Controls;
                }
 
-
                public int Count {
                        get { return cc.Count; }
                }
@@ -64,7 +62,6 @@ namespace System.Web.UI.HtmlControls {
                        get { return this; }    // as documented
                }
 
-
                public void Add (HtmlTableRow row)
                {
                        cc.Add (row);