Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
If str is less than maxWidth characters long, return it.
Else abbreviate it to (substring(str, 0, max-3) + "...").
StringUtils.abbreviate("abcdefg", 7) = "abcdefg"
The first element of the description probably means "less than or equal to"