Removal of NET_1_1 defines and some NET_2_0; Both defines are true these days in...
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaValidationFlags.cs
index 144cfffa07d6bd7a74a85a0b247973c2a6889edb..0e91c3473ba598e240c5e1b088f4f9de151f02ab 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 #if NET_2_0
-using System;\r
+using System;
 
-namespace System.Xml.Schema\r
+namespace System.Xml.Schema
 {
-       [Flags]\r
-       public enum XmlSchemaValidationFlags\r
+       [Flags]
+       public enum XmlSchemaValidationFlags
        {
                None = 0,
                ProcessInlineSchema = 1,
                ProcessSchemaLocation = 2,
-               ReportValidationWarnings = 4,\r
+               ReportValidationWarnings = 4,
                ProcessIdentityConstraints = 8,
                [Obsolete ("It is really idiotic idea to include such validation option that breaks W3C XML Schema specification compliance and interoperability.")]
                AllowXmlAttributes = 16,
-       }\r
-}\r
+       }
+}
 #endif