Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 30140 invoked from network); 25 Apr 2007 11:34:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Apr 2007 11:34:34 -0000 Received: (qmail 56518 invoked by uid 500); 25 Apr 2007 11:34:37 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 56489 invoked by uid 500); 25 Apr 2007 11:34:37 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 56475 invoked by uid 99); 25 Apr 2007 11:34:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Apr 2007 04:34:37 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of alexey.a.petrenko@gmail.com designates 64.233.162.237 as permitted sender) Received: from [64.233.162.237] (HELO nz-out-0506.google.com) (64.233.162.237) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Apr 2007 04:34:29 -0700 Received: by nz-out-0506.google.com with SMTP id j2so255955nzf for ; Wed, 25 Apr 2007 04:34:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pw++z1HzDsbUCRews1hrOxNUDxiqBRbvWI8j5Zy+RIYJ3G1tTJW20+/rzG5+SEAYygwEAlZHQi4JxLsYXhu8UVB1en8EoXpGZBqklN8oy0VZKgCNK03rgzA9sviMJK1jsR4vp7H9C0guc1Qgj76PounPfVa0R+7J0cGt+P8Kz50= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=G+2dfT4FGSlVqvgXjNrDHI+u7YHjIYIfiviNFFDG2Bpc6ZV8jJsw0GCnOy9rAxkAsMmdwzruj87F4AlabBLbCeWw1BAXYGmrpRGiEw/OchMaJACJ894kFkjjPDPGShT5sYtzSqJK1qCRPBI3VvSr7xTQWOv0s/YegmlWnWrGVbY= Received: by 10.114.75.1 with SMTP id x1mr161763waa.1177500848160; Wed, 25 Apr 2007 04:34:08 -0700 (PDT) Received: by 10.114.123.16 with HTTP; Wed, 25 Apr 2007 04:34:08 -0700 (PDT) Message-ID: Date: Wed, 25 Apr 2007 15:34:08 +0400 From: "Alexey Petrenko" To: dev@harmony.apache.org Subject: Re: [drlvm] Annoying output from drlvm when Array.newInstace(Class,int[]) is invoked In-Reply-To: <4d0b24970704250425i3c9545f8p40ecd7f81691a2b7@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4d0b24970704250425i3c9545f8p40ecd7f81691a2b7@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org Could you please file a JIRA? SY, Alexey 2007/4/25, Andrew Zhang : > Hi, > > There're some annoying output from drlvm when Array.newInstace(Class,int[]) > is invoked. Running following code would print "[Ljava/lang/String;" to the > console. Would anyone like to fix that? Thanks! > > public void test() throws Exception { > String[][] array = (String[][]) Array.newInstance(String.class, new > int[] { 1, 2 }); > assertEquals(1,array.length); > assertEquals(2,array[0].length); > } > > -- > Best regards, > Andrew Zhang >