2003-12-27 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Sat, 27 Dec 2003 03:08:46 +0000 (03:08 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Sat, 27 Dec 2003 03:08:46 +0000 (03:08 -0000)
* DataSet.cs : Fixed incorrect WriteXml() signature.

svn path=/trunk/mcs/; revision=21508

mcs/class/System.Data/System.Data/ChangeLog
mcs/class/System.Data/System.Data/DataSet.cs

index 6ecbf522667bc22373a413a5f9036c0d6862b1a1..ddce9cc5b5fe15eae4968bfeeed9fc6fb320b11c 100644 (file)
@@ -1,3 +1,7 @@
+2003-12-27  Atsushi Enomoto <atsushi@ximian.com>
+
+       * DataSet.cs : Fixed incorrect WriteXml() signature.
+
 2003-12-18  Jackson Harper <jackson@ximian.com>
 
        * DataView.cs: Implement AddNew, Delete, and OnListChanged.
index fcd5e78774ad4ed7130d047422a65b389d249e94..98adcb640d8bd2bdf75e9f0932ae5231f91f1fc6 100644 (file)
@@ -618,14 +618,14 @@ namespace System.Data {
                        WriteXml (writer, mode, false);
                }
                
-               public void WriteXml (Stream stream, XmlWriteMode mode, bool writePI)
+               internal void WriteXml (Stream stream, XmlWriteMode mode, bool writePI)
                {
                        XmlWriter writer = new XmlTextWriter (stream, null);
                        
                        WriteXml (writer, mode, writePI);
                }
 
-               public void WriteXml (string fileName, XmlWriteMode mode, bool writePI)
+               internal void WriteXml (string fileName, XmlWriteMode mode, bool writePI)
                {
                        XmlWriter writer = new XmlTextWriter (fileName, null);
                        
@@ -634,14 +634,14 @@ namespace System.Data {
                        writer.Close ();
                }
 
-               public void WriteXml (TextWriter writer, XmlWriteMode mode, bool writePI)
+               internal void WriteXml (TextWriter writer, XmlWriteMode mode, bool writePI)
                {
                        XmlWriter xwriter = new XmlTextWriter (writer);
                        
                        WriteXml (xwriter, mode, writePI);
                }
 
-               public void WriteXml (XmlWriter writer, XmlWriteMode mode, bool writePI)
+               internal void WriteXml (XmlWriter writer, XmlWriteMode mode, bool writePI)
                {
                        if (writePI && (writer.WriteState == WriteState.Start))
                                writer.WriteStartDocument (true);