mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-10 03:55:10 +00:00
Simplify some usages of the ternary operator with calls to Math.max() and Math.min(). (#512)
This commit is contained in:
parent
271cf4c9e9
commit
44d4acc621
@ -6421,9 +6421,8 @@ private static String replace(final String text, String searchString, final Stri
|
||||
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 static String truncate(final String str, final int offset, final int maxW
|
||||
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…
x
Reference in New Issue
Block a user