svn path=/trunk/mcs/; revision=53502
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ProfileGroupSettings.cs
index e3f22b1ce298fd5b41043d77f345b59a1ffc332a..a67cd29ca1cabb653471c6b5849107cc00ed4836 100644 (file)
@@ -78,25 +78,17 @@ namespace System.Web.Configuration
 
                [ConfigurationProperty ("name", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
                public string Name {
-                       get {
-                               return (string)base [nameProp];
-                       }
-                       internal set{
-                               base [nameProp] = value;
-                       }
+                       get { return (string)base [nameProp]; }
+                       internal set{ base [nameProp] = value; }
                }
 
                [ConfigurationProperty ("", Options = ConfigurationPropertyOptions.IsDefaultCollection)]
                public ProfilePropertySettingsCollection PropertySettings {
-                       get {
-                               return (ProfilePropertySettingsCollection) base [propertySettingsProp];
-                       }
+                       get { return (ProfilePropertySettingsCollection) base [propertySettingsProp]; }
                }
 
                protected override ConfigurationPropertyCollection Properties {
-                       get {
-                               return properties;
-                       }
+                       get { return properties; }
                }
        }
 }