This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new b5d056211 Remove guesswork comment that could be true of any method b5d056211 is described below commit b5d056211b728be5a340d5aa31f0c459f74f5b1c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jun 3 07:28:27 2024 -0400 Remove guesswork comment that could be true of any method --- src/main/java/org/apache/commons/lang3/StringUtils.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index 6e786b004..193aa35c5 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -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);