Remove guesswork comment that could be true of any method

This commit is contained in:
Gary Gregory 2024-06-03 07:28:27 -04:00
parent a224a39b17
commit b5d056211b
1 changed files with 0 additions and 2 deletions

View File

@ -7106,8 +7106,6 @@ public class StringUtils {
if (str == null) {
return null;
}
// could implement manually, but simple way is to reuse other,
// probably slower, methods.
final String[] strs = split(str, separatorChar);
ArrayUtils.reverse(strs);
return join(strs, separatorChar);