From: Andreas N Date: Thu, 3 Jul 2008 08:16:05 +0000 (-0000) Subject: 2008-07-03 Andreas Nahr X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=da7510bf081e3644edd7db2be5b0d9cb803c775f;p=mono.git 2008-07-03 Andreas Nahr * UTF8Encoding.cs: Fix parameter names, Remove unfounded TODO svn path=/trunk/mcs/; revision=107134 --- diff --git a/mcs/class/corlib/System.Text/ChangeLog b/mcs/class/corlib/System.Text/ChangeLog index e5b38f27ca7..deab7450e70 100644 --- a/mcs/class/corlib/System.Text/ChangeLog +++ b/mcs/class/corlib/System.Text/ChangeLog @@ -1,3 +1,7 @@ +2008-07-03 Andreas Nahr + + * UTF8Encoding.cs: Fix parameter names, Remove unfounded TODO + 2008-07-03 Andreas Nahr * UTF8Encoding.cs: diff --git a/mcs/class/corlib/System.Text/UTF8Encoding.cs b/mcs/class/corlib/System.Text/UTF8Encoding.cs index 66b96ada96d..70e21758c3f 100644 --- a/mcs/class/corlib/System.Text/UTF8Encoding.cs +++ b/mcs/class/corlib/System.Text/UTF8Encoding.cs @@ -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) {