[
https://issues.apache.org/jira/browse/LANG-419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Henri Yandell closed LANG-419.
------------------------------
Resolution: Fixed
svn ci -m "Applying Vincent Behar's second patch for LANG-419 - fixing a bug in
abbreviate such that lower limits greater than the length of the string weren't
working correctly" src
Sending src/java/org/apache/commons/lang/WordUtils.java
Sending src/test/org/apache/commons/lang/WordUtilsTest.java
Transmitting file data ..
Committed revision 655246.
> WordUtils.abbreviate bug when lower is greater than str.length
> --------------------------------------------------------------
>
> Key: LANG-419
> URL: https://issues.apache.org/jira/browse/LANG-419
> Project: Commons Lang
> Issue Type: Bug
> Affects Versions: 2.4
> Reporter: Vincent Behar
> Priority: Minor
> Fix For: 3.0
>
> Attachments: WordUtils_abbreviate_lowerLimit_bug.patch,
> WordUtils_abbreviate_lowerLimit_bug_fixed.patch
>
>
> In WordUtils.abbreviate, upper is adjusted to the length of the string, then
> to lower.
> But lower is never adjusted to the length of the string, so if lower is
> greater than str.lengt(), upper will be too...
> Then, str.substring(0, upper) throw a StringIndexOutOfBoundsException
> The fix is to adjust lower to the length of the string
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.