Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git
This commit is contained in:
commit
d8ebaf932d
|
@ -6421,9 +6421,8 @@ public class StringUtils {
|
|||
return text;
|
||||
}
|
||||
final int replLength = searchString.length();
|
||||
int increase = replacement.length() - replLength;
|
||||
increase = increase < 0 ? 0 : increase;
|
||||
increase *= max < 0 ? 16 : max > 64 ? 64 : max;
|
||||
int increase = Math.max(replacement.length() - replLength, 0);
|
||||
increase *= max < 0 ? 16 : Math.min(max, 64);
|
||||
final StringBuilder buf = new StringBuilder(text.length() + increase);
|
||||
while (end != INDEX_NOT_FOUND) {
|
||||
buf.append(text, start, end).append(replacement);
|
||||
|
@ -9168,7 +9167,7 @@ public class StringUtils {
|
|||
return EMPTY;
|
||||
}
|
||||
if (str.length() > maxWidth) {
|
||||
final int ix = offset + maxWidth > str.length() ? str.length() : offset + maxWidth;
|
||||
final int ix = Math.min(offset + maxWidth, str.length());
|
||||
return str.substring(offset, ix);
|
||||
}
|
||||
return str.substring(offset);
|
||||
|
|
Loading…
Reference in New Issue