You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Paulex Yang (JIRA)" <ji...@apache.org> on 2006/11/06 18:08:39 UTC

[jira] Commented: (HARMONY-2063) [classlib][luni]method hasNextXXX() of j.u.Scanner does not cache the value.

    [ http://issues.apache.org/jira/browse/HARMONY-2063?page=comments#action_12447472 ] 
            
Paulex Yang commented on HARMONY-2063:
--------------------------------------

Tony, the second patch is applied at revision r with minor changes, I tidied it up to remove compiler warnings, and replaced the "if (obj != null && obj instanceof xxx)" with "if(obj instanceof xxx)", because the instanceof always false for null. Thank you for this enhancement, please verify the issue fully resolved as you expected.

> [classlib][luni]method hasNextXXX() of j.u.Scanner does not cache the value.
> ----------------------------------------------------------------------------
>
>                 Key: HARMONY-2063
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2063
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Paulex Yang
>         Attachments: harmony-2063-2.diff, harmony-2063.diff
>
>
> RI caches the value when calling hasNextShort() for following nextShort(), but harmony does not.
> Refer to testcase below,  which passed on RI but failed on Hamorny.
> Scanner fails for this test 
> public void testNextShort() { 
> Scanner scanner=new Scanner("123 123"); 
> assertFalse(scanner.hasNextShort(16) && scanner.nextShort()==123); 
> } 

-- 
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