Fix a few cases of mixed line-endings
[mono.git] / mcs / class / System / System.Net.Configuration / SmtpSection.cs
index e61fc13d1ffe9f65ad0d09156c83d568952ee54d..d13dd0d6d15d6bc3822d8d327e866d0e3855f61f 100644 (file)
@@ -39,24 +39,24 @@ namespace System.Net.Configuration {
         public sealed class SmtpSection : ConfigurationSection
         {
                 [ConfigurationProperty ("deliveryMethod", DefaultValue = "Network")]
-                public SmtpDeliveryMethod DeliveryMethod {\r
-                                       get { return (SmtpDeliveryMethod) base ["deliveryMethod"]; }\r
+                public SmtpDeliveryMethod DeliveryMethod {
+                                       get { return (SmtpDeliveryMethod) base ["deliveryMethod"]; }
                                        set { base ["deliveryMethod"] = value; }
                 }
 
                 [ConfigurationProperty ("from")]
-                public string From {\r
-                                       get { return (string) base ["from"]; }\r
+                public string From {
+                                       get { return (string) base ["from"]; }
                                        set { base ["from"] = value; }
                 }
 
                 [ConfigurationProperty ("network")]
-                public SmtpNetworkElement Network {\r
+                public SmtpNetworkElement Network {
                                        get { return (SmtpNetworkElement) base ["network"]; }
                 }
 
                 [ConfigurationProperty ("specifiedPickupDirectory")]
-                public SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory {\r
+                public SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory {
                                        get { return (SmtpSpecifiedPickupDirectoryElement) base ["specifiedPickupDirectory"]; }
                 }