HubertWo commented on a change in pull request #784:
URL: https://github.com/apache/commons-lang/pull/784#discussion_r693455055
##########
File path: src/main/java/org/apache/commons/lang3/StringUtils.java
##########
@@ -3922,6 +3922,37 @@ public static String join(final boolean[] array, final
char delimiter) {
* @since 3.12.0
*/
public static String join(final boolean[] array, final char delimiter,
final int startIndex, final int endIndex) {
+ return join(array, String.valueOf(delimiter), startIndex, endIndex);
+ }
+
+ /**
+ * <p>Joins the elements of the provided array into a single String
containing the provided list of elements.</p>
Review comment:
Thanks for pointing this out, I didn't know about such rule.
Unnecessary paragraph tags removed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]