Ver código fonte

2004-07-09 Atsushi Enomoto <[email protected]>

	* XmlConvertDateTimeOption.cs : Forgot to change the content...

svn path=/trunk/mcs/; revision=30934
Atsushi Eno 21 anos atrás
pai
commit
02fac1b92e

+ 4 - 0
mcs/class/System.XML/System.Xml/ChangeLog

@@ -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.

+ 5 - 12
mcs/class/System.XML/System.Xml/XmlConvertDateTimeOption.cs

@@ -29,18 +29,11 @@
 
 namespace System.Xml {
 
+	public enum XmlConvertDateTimeOption {
 
-	/// <summary>
-	/// </summary>
-	public enum Formatting {
+		Local = 0,
 
-		/// <summary>
-		/// </summary>
-		None = 0,
+		RoundTrip= 1,
+	}
 
-		/// <summary>
-		/// </summary>
-		Indented = 1,
-	} // Formatting
-
-} // System.Xml
+}