Remove guesswork comment that could be true of any method
This commit is contained in:
parent
a224a39b17
commit
b5d056211b
|
@ -7106,8 +7106,6 @@ public class StringUtils {
|
||||||
if (str == null) {
|
if (str == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
// could implement manually, but simple way is to reuse other,
|
|
||||||
// probably slower, methods.
|
|
||||||
final String[] strs = split(str, separatorChar);
|
final String[] strs = split(str, separatorChar);
|
||||||
ArrayUtils.reverse(strs);
|
ArrayUtils.reverse(strs);
|
||||||
return join(strs, separatorChar);
|
return join(strs, separatorChar);
|
||||||
|
|
Loading…
Reference in New Issue