2007-01-31 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / TableItemStyle.cs
index ea9ef1d0d1ecd5531574c21e661c359a42d339e3..7ba7c23bba269d83364570fccd9c31a98fa62b8c 100644 (file)
@@ -224,20 +224,5 @@ namespace System.Web.UI.WebControls {
                        // call base at the end because "styles" will reset there
                        base.Reset ();
                }
-
-               internal override void LoadViewStateInternal()
-               {
-                       if (viewstate ["HorizontalAlign"] != null) {
-                               SetBit ((int) TableItemStyles.HorizontalAlign);
-                       }
-                       if (viewstate ["VerticalAlign"] != null) {
-                               SetBit ((int) TableItemStyles.VerticalAlign);
-                       }
-                       if (viewstate["Wrap"] != null) {
-                               SetBit ((int) TableItemStyles.Wrap);
-                       }
-
-                       base.LoadViewStateInternal();
-               }
        }
 }