Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml/XmlTextReader.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlTextReader.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlTextReader.cs b/mcs/class/System.XML/System.Xml/XmlTextReader.cs
index 178d9a06d3c..634115e6ddc 100644
--- a/mcs/class/System.XML/System.Xml/XmlTextReader.cs
+++ b/mcs/class/System.XML/System.Xml/XmlTextReader.cs
@@ -40,10 +40,8 @@ namespace System.Xml
{
#region Constructors
- [MonoTODO]
protected XmlTextReader ()
{
- throw new NotImplementedException ();
}
[MonoTODO]
@@ -611,8 +609,8 @@ namespace System.Xml
private StringBuilder xmlBuffer; // This is for Read(Inner|Outer)Xml
private StringBuilder currentTag; // A buffer for ReadContent for ReadOuterXml
private bool saveToXmlBuffer;
- private int line;
- private int column;
+ private int line = 1;
+ private int column = 1;
private void Init ()
{