You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2006/08/31 10:52:25 UTC

[jira] Resolved: (HARMONY-650) [classlib][text]unexpected NPE for object constructed by java.text.Bidi(AttributedCharacterIterator)

     [ http://issues.apache.org/jira/browse/HARMONY-650?page=all ]

Mark Hindess resolved HARMONY-650.
----------------------------------

    Resolution: Fixed

Applied in r438844.  Please check it has been applied as expected.  (Note, I also updated the manifest to reflect the new java.awt.font dependency.)


> [classlib][text]unexpected NPE for object constructed by java.text.Bidi(AttributedCharacterIterator)
> ----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-650
>                 URL: http://issues.apache.org/jira/browse/HARMONY-650
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Assigned To: Mark Hindess
>         Attachments: BidiTest.patch, harmony-650.patch, harmony-650a.patch, harmony-650b.patch
>
>
> The methods of object constructed by java.text.Bidi(AttributedCharacterIterator) throws unexpected NPE on harmony classes while RI return correct value. For example, getRunLimit(1):
> ===================== test.java ====================
> import java.text.*; 
> public class test { 
>     public static void main (String[] args) {
>         AttributedString paragraph = new AttributedString("text");
>         Bidi bidi = new Bidi(paragraph.getIterator());
>         try {
>             System.out.println("getRunLimit(1) = " + bidi.getRunLimit(1) + "\npassed!");
>         } catch (Exception e) {
>             e.printStackTrace();
>             System.out.println("failed");
>         }
>     }
> } 
> ================================================
> Output:
> C:\tmp\tmp17>C:\jrockit-j2sdk1.4.2_04\bin\java.exe -showversion test
> java version "1.4.2_04"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
> BEA WebLogic JRockit(TM) 1.4.2_04 JVM  (build ari-31788-20040616-1132-win-ia32,
> Native Threads, GC strategy: parallel)
> getRunLimit(1) = 4
> passed!
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as app
> licable.
> java.lang.NullPointerException
>         at java.text.Bidi.getRunLimit(Bidi.java:349)
>         at test.main(test.java:8)
> failed
> C:\tmp\tmp17>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira