2008-07-03 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Thu, 3 Jul 2008 08:16:05 +0000 (08:16 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Thu, 3 Jul 2008 08:16:05 +0000 (08:16 -0000)
* UTF8Encoding.cs: Fix parameter names, Remove unfounded TODO

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

mcs/class/corlib/System.Text/ChangeLog
mcs/class/corlib/System.Text/UTF8Encoding.cs

index e5b38f27ca742cb48f96e858c043a1186858a7c8..deab7450e704aaa01834cfb25c08f2952df145eb 100644 (file)
@@ -1,3 +1,7 @@
+2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
+
+       * UTF8Encoding.cs: Fix parameter names, Remove unfounded TODO
+
 2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
 
        * UTF8Encoding.cs:
index 66b96ada96d59794837b5d93df3066460176146f..70e21758c3f5a2fcd7122c0c797f4384c6c8785a 100644 (file)
@@ -1075,14 +1075,12 @@ Char.IsLetterOrDigit (pair);
        }
 
 #if NET_2_0
-       [MonoTODO]
-       public override int GetByteCount (string s)
+       public override int GetByteCount (string chars)
        {
                // hmm, does this override make any sense?
-               return base.GetByteCount (s);
+               return base.GetByteCount (chars);
        }
 
-       [MonoTODO]
        [ComVisible (false)]
        public override string GetString (byte [] bytes, int index, int count)
        {