You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Arne Burmeister (JIRA)" <ji...@apache.org> on 2013/09/17 10:07:03 UTC

[jira] [Updated] (LANG-917) Exception when combining custom and choice format in ExtendedMessageFormat

     [ https://issues.apache.org/jira/browse/LANG-917?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arne Burmeister updated LANG-917:
---------------------------------

    Attachment: ExtendedMessageFormatTest.java
    
> Exception when combining custom and choice format in ExtendedMessageFormat
> --------------------------------------------------------------------------
>
>                 Key: LANG-917
>                 URL: https://issues.apache.org/jira/browse/LANG-917
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.text.*
>    Affects Versions: 2.5, 2.6
>            Reporter: Arne Burmeister
>         Attachments: ExtendedMessageFormatTest.java
>
>
> When using a custom format registered and a choice format with an inner format is used in the same message format, an IndexOutOfBoundsException occurs in the custructor of ExtendedMessageFormat:
> {code:java}new ExtendedMessageFormat("Hi {0,test,any}, got {1,choice,0#none|1#one|1<{1,number}}", Collections.singletonMap("test", new TestFormatFactory()));{code}
> {noformat}
> java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
> 	at java.util.ArrayList.rangeCheck(ArrayList.java:604)
> 	at java.util.ArrayList.get(ArrayList.java:382)
> 	at org.apache.commons.lang.text.ExtendedMessageFormat.insertFormats(ExtendedMessageFormat.java:364)
> 	at org.apache.commons.lang.text.ExtendedMessageFormat.applyPattern(ExtendedMessageFormat.java:192)
> 	at org.apache.commons.lang.text.ExtendedMessageFormat.<init>(ExtendedMessageFormat.java:127)
> {noformat}
> The problem occurs at the start of {{\{1,number\}}}.
> As a workaround i registered the {{TestFormatFactory}} also for "choice" and then returning {{new ChoiceFormat(arguments)}}, but that is not the idea.
> I also checked the change logs, but there seems no change on this problem. I have not tester, but I think the bug still is present in the current release.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira