2004-09-11 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
authorRafael Teixeira <monoman@gmail.com>
Sat, 11 Sep 2004 13:04:49 +0000 (13:04 -0000)
committerRafael Teixeira <monoman@gmail.com>
Sat, 11 Sep 2004 13:04:49 +0000 (13:04 -0000)
* Utils.cs: Wrong return type in CopyArray Signature. Bug #65651

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

mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ChangeLog
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/Utils.cs

index 5f8042a3f406877628c73a7465b6f1fc03c8d09d..4fa334066a8faa86c0ea12fe36e2491a11de303a 100644 (file)
@@ -1,3 +1,6 @@
+2004-09-11  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
+       * Utils.cs: Wrong return type in CopyArray Signature. Bug #65651
+\r
 2004-09-11  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
        * ObjectType.cs: Corrected some test ordering in ObjTst and using new getObjTstString to test two candidate strings. Bug #65653\r
 
index 15e33479e61a6444409b31b2c9fc44771f4a49be..3a10c0c47ede7bcf12a39333dd13ffaeac3b687d 100644 (file)
@@ -387,7 +387,7 @@ namespace Microsoft.VisualBasic.CompilerServices {
                /**
                 * This method copy the information from one array to another.
                 */
-               public static object CopyArray(Array source, Array destination) {
+               public static Array CopyArray(Array source, Array destination) {
                        if (source == null || destination == null)
                                return destination;