* XmlConvertDateTimeOption.cs : Forgot to change the content... svn path=/trunk/mcs/; revision=30934
@@ -1,3 +1,7 @@
+2004-07-09 Atsushi Enomoto <[email protected]>
+
+ * XmlConvertDateTimeOption.cs : Forgot to change the content...
2004-07-09 Atsushi Enomoto <[email protected]>
* ConformanceLevel.cs : Fixed integer value.
@@ -29,18 +29,11 @@
namespace System.Xml {
+ public enum XmlConvertDateTimeOption {
- /// <summary>
- /// </summary>
- public enum Formatting {
+ Local = 0,
- None = 0,
+ RoundTrip= 1,
+ }
- Indented = 1,
- } // Formatting
-
-} // System.Xml
+}