Author: atsushi
Date: 2006-07-26 23:02:24 -0400 (Wed, 26 Jul 2006)
New Revision: 63027

Modified:
   trunk/mcs/class/System.XML/System.Xml.Schema/ChangeLog
   trunk/mcs/class/System.XML/System.Xml.Schema/XmlSchemaException.cs
Log:
2006-07-27  Atsushi Enomoto <[EMAIL PROTECTED]>

        * XmlSchemaException.cs : oops, .ctor(string) was only for 2.0.



Modified: trunk/mcs/class/System.XML/System.Xml.Schema/ChangeLog
===================================================================
--- trunk/mcs/class/System.XML/System.Xml.Schema/ChangeLog      2006-07-27 
02:58:28 UTC (rev 63026)
+++ trunk/mcs/class/System.XML/System.Xml.Schema/ChangeLog      2006-07-27 
03:02:24 UTC (rev 63027)
@@ -1,5 +1,9 @@
 2006-07-27  Atsushi Enomoto <[EMAIL PROTECTED]>
 
+       * XmlSchemaException.cs : oops, .ctor(string) was only for 2.0.
+
+2006-07-27  Atsushi Enomoto <[EMAIL PROTECTED]>
+
        * XmlSchemaCollection.cs :
          eliminated call to XmlSchema.CompileSubset(). Now XmlSchemaSet is
          the only starter of the compilation.

Modified: trunk/mcs/class/System.XML/System.Xml.Schema/XmlSchemaException.cs
===================================================================
--- trunk/mcs/class/System.XML/System.Xml.Schema/XmlSchemaException.cs  
2006-07-27 02:58:28 UTC (rev 63026)
+++ trunk/mcs/class/System.XML/System.Xml.Schema/XmlSchemaException.cs  
2006-07-27 03:02:24 UTC (rev 63027)
@@ -51,12 +51,17 @@
                        : this ("A schema error occured.", null)
                {
                }
+#endif
 
-               public XmlSchemaException (string message)
+#if NET_2_0
+               public
+#else
+               internal
+#endif
+               XmlSchemaException (string message)
                        : this (message, null)
                {
                }
-#endif
 
                protected XmlSchemaException(SerializationInfo info, 
StreamingContext context)
                        : base (info, context)

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to