You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sian January (JIRA)" <ji...@apache.org> on 2007/05/23 11:03:16 UTC

[jira] Created: (HARMONY-3937) [classlib] [text] Mistake in java.text.DecimalFormat

[classlib] [text] Mistake in java.text.DecimalFormat
----------------------------------------------------

                 Key: HARMONY-3937
                 URL: https://issues.apache.org/jira/browse/HARMONY-3937
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Sian January
            Priority: Trivial
         Attachments: DecimalFormat.java.patch

On line 823 it looks like this

setMaximumIntegerDigits(super.getMinimumIntegerDigits());            

should actually be this:

setMaximumIntegerDigits(super.getMaximumIntegerDigits());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (HARMONY-3937) [classlib] [text] Mistake in java.text.DecimalFormat

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paulex Yang resolved HARMONY-3937.
----------------------------------

    Resolution: Fixed

Sian, patch applied at r540914, thanks a lot, please verify.

> [classlib] [text] Mistake in java.text.DecimalFormat
> ----------------------------------------------------
>
>                 Key: HARMONY-3937
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3937
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Paulex Yang
>            Priority: Trivial
>         Attachments: DecimalFormat.java.patch
>
>
> On line 823 it looks like this
> setMaximumIntegerDigits(super.getMinimumIntegerDigits());            
> should actually be this:
> setMaximumIntegerDigits(super.getMaximumIntegerDigits());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-3937) [classlib] [text] Mistake in java.text.DecimalFormat

Posted by "Sian January (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sian January updated HARMONY-3937:
----------------------------------

    Attachment: DecimalFormat.java.patch

> [classlib] [text] Mistake in java.text.DecimalFormat
> ----------------------------------------------------
>
>                 Key: HARMONY-3937
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3937
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>            Priority: Trivial
>         Attachments: DecimalFormat.java.patch
>
>
> On line 823 it looks like this
> setMaximumIntegerDigits(super.getMinimumIntegerDigits());            
> should actually be this:
> setMaximumIntegerDigits(super.getMaximumIntegerDigits());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (HARMONY-3937) [classlib] [text] Mistake in java.text.DecimalFormat

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paulex Yang closed HARMONY-3937.
--------------------------------


Verified by Sian.

> [classlib] [text] Mistake in java.text.DecimalFormat
> ----------------------------------------------------
>
>                 Key: HARMONY-3937
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3937
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Paulex Yang
>            Priority: Trivial
>         Attachments: DecimalFormat.java.patch
>
>
> On line 823 it looks like this
> setMaximumIntegerDigits(super.getMinimumIntegerDigits());            
> should actually be this:
> setMaximumIntegerDigits(super.getMaximumIntegerDigits());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (HARMONY-3937) [classlib] [text] Mistake in java.text.DecimalFormat

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paulex Yang reassigned HARMONY-3937:
------------------------------------

    Assignee: Paulex Yang

> [classlib] [text] Mistake in java.text.DecimalFormat
> ----------------------------------------------------
>
>                 Key: HARMONY-3937
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3937
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Paulex Yang
>            Priority: Trivial
>         Attachments: DecimalFormat.java.patch
>
>
> On line 823 it looks like this
> setMaximumIntegerDigits(super.getMinimumIntegerDigits());            
> should actually be this:
> setMaximumIntegerDigits(super.getMaximumIntegerDigits());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-3937) [classlib] [text] Mistake in java.text.DecimalFormat

Posted by "Sian January (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-3937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498214 ] 

Sian January commented on HARMONY-3937:
---------------------------------------

Thanks Paulex - the patch was applied as expected.

> [classlib] [text] Mistake in java.text.DecimalFormat
> ----------------------------------------------------
>
>                 Key: HARMONY-3937
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3937
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Paulex Yang
>            Priority: Trivial
>         Attachments: DecimalFormat.java.patch
>
>
> On line 823 it looks like this
> setMaximumIntegerDigits(super.getMinimumIntegerDigits());            
> should actually be this:
> setMaximumIntegerDigits(super.getMaximumIntegerDigits());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.