2003-01-26 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / XmlSignificantWhitespace.cs
index e9af5f3153c7b7f9447a82ec32a3d39d4f951e6c..1df1a7f512ba18c87115db9ddf7c11e01fb9f5a8 100644 (file)
@@ -41,10 +41,10 @@ namespace System.Xml
                
                public override string Value {
                        get { return Data; }
-                       [MonoTODO]
                        set {
                                if (IsValidWhitespaceChar (value) == false)
                                        throw new ArgumentException ("Invalid whitespace characters.");
+                               base.Data = value;
                        }
                }