Fix #328490
[mono.git] / mcs / class / System / System.ComponentModel / RecommendedAsConfigurableAttribute.cs
index dffb993f1c9bb608df05ff646ad89c719b7ff523..bab33341dec9b960dbcd74c397d6a40c4857471f 100644 (file)
@@ -36,7 +36,7 @@ namespace System.ComponentModel {
 
        [AttributeUsage (AttributeTargets.Property)]
 #if NET_2_0
-       //[Obsolete ("Use SettingsBindableAttribute instead of RecommendedAsConfigurableAttribute")]
+       [Obsolete ("Use SettingsBindableAttribute instead of RecommendedAsConfigurableAttribute")]
 #endif
        public class RecommendedAsConfigurableAttribute : Attribute {
 
@@ -48,7 +48,6 @@ namespace System.ComponentModel {
                public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute (false);
                public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute (true);
 
-
                #endregion // Fields
 
                #region Constructors
@@ -60,7 +59,6 @@ namespace System.ComponentModel {
 
                #endregion // Constructors
 
-
                #region Properties
 
                public bool RecommendedAsConfigurable {
@@ -69,7 +67,6 @@ namespace System.ComponentModel {
 
                #endregion // Properties
 
-
                #region Methods
 
                public override bool Equals (object obj)
@@ -79,7 +76,6 @@ namespace System.ComponentModel {
                        return ((RecommendedAsConfigurableAttribute) obj).RecommendedAsConfigurable == recommendedAsConfigurable;
                }
 
-
                public override int GetHashCode ()
                {
                        return recommendedAsConfigurable.GetHashCode ();
@@ -93,4 +89,3 @@ namespace System.ComponentModel {
                #endregion // Methods
        }
 }
-