Remove profanity
[mono.git] / mcs / class / System / System.Configuration / IgnoreSectionHandler.cs
index 5f37073915fcb2c8efa27649718ed4c4932ea3bb..693f936c05e57d5874cc33b1016568d15ffc4b9a 100644 (file)
@@ -1,11 +1,11 @@
-//\r
-// System.Configuration.IgnoreSectionHandler.cs\r
-//\r
-// Author:\r
-//   Christopher Podurgiel (cpodurgiel@msn.com)\r
-//\r
-// (C) Chris Podurgiel\r
-//\r
+//
+// System.Configuration.IgnoreSectionHandler.cs
+//
+// Author:
+//   Christopher Podurgiel (cpodurgiel@msn.com)
+//
+// (C) Chris Podurgiel
+//
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
+
 using System;
 #if (XML_DEP)
 using System.Xml;
-#endif\r
+#else
+using XmlNode = System.Object;
+#endif
 
-namespace System.Configuration\r
-{\r
-       /// <summary>\r
-       /// Summary description for IgnoreSectionHandler.\r
-       /// </summary>\r
-       public class IgnoreSectionHandler : IConfigurationSectionHandler\r
+namespace System.Configuration
+{
+       /// <summary>
+       /// Summary description for IgnoreSectionHandler.
+       /// </summary>
+       public class IgnoreSectionHandler : IConfigurationSectionHandler
        {
-#if (XML_DEP)
-               /// <summary>\r
-               ///             Creates a new configuration handler and adds the specified configuration object to the collection.\r
-               /// </summary>\r
-               /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>\r
-               /// <param name="configContext">Provides access to the virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is null.</param>\r
-               /// <param name="section">The XML node that contains the configuration information to be handled. section provides direct access to the XML contents of the configuration section.</param>\r
-               /// <returns></returns>\r
-               public virtual object Create(object parent, object configContext, XmlNode section)\r
-               {\r
-                       return null;\r
+               /// <summary>
+               ///             Creates a new configuration handler and adds the specified configuration object to the collection.
+               /// </summary>
+               /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>
+               /// <param name="configContext">Provides access to the virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is null.</param>
+               /// <param name="section">The XML node that contains the configuration information to be handled. section provides direct access to the XML contents of the configuration section.</param>
+               /// <returns></returns>
+               public virtual object Create(object parent, object configContext, XmlNode section)
+               {
+                       return null;
                }
-#endif
-       }\r
-}\r
+       }
+}