Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 55770 invoked from network); 26 Jun 2006 10:35:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Jun 2006 10:35:02 -0000 Received: (qmail 95699 invoked by uid 500); 26 Jun 2006 10:35:01 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 95655 invoked by uid 500); 26 Jun 2006 10:35:01 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 95644 invoked by uid 99); 26 Jun 2006 10:35:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 03:35:01 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 03:35:00 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 61F661A983A; Mon, 26 Jun 2006 03:34:40 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r417162 - /incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/Bidi.java Date: Mon, 26 Jun 2006 10:34:40 -0000 To: harmony-commits@incubator.apache.org From: mloenko@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060626103440.61F661A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mloenko Date: Mon Jun 26 03:34:39 2006 New Revision: 417162 URL: http://svn.apache.org/viewvc?rev=417162&view=rev Log: fixes for HARMONY-650 [classlib][text]unexpected NPE for object constructed by java.text.Bidi(AttributedCharacterIterator) Modified: incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/Bidi.java Modified: incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/Bidi.java URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/Bidi.java?rev=417162&r1=417161&r2=417162&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/Bidi.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/Bidi.java Mon Jun 26 03:34:39 2006 @@ -460,7 +460,7 @@ * @return a string containing the internal messsage. */ public String toString() { - // simply return nothing - return ""; + return super.toString() + "[direction: " + direction + " baselevel: " + baseLevel + + " length: " + length + " runs: " + runs + "]"; } }