HubertWo commented on a change in pull request #784:
URL: https://github.com/apache/commons-lang/pull/784#discussion_r683719485



##########
File path: src/main/java/org/apache/commons/lang3/StringUtils.java
##########
@@ -4818,13 +5052,48 @@ public static String join(final short[] array, final 
char delimiter) {
      * @since 3.2
      */
     public static String join(final short[] array, final char delimiter, final 
int startIndex, final int endIndex) {
+        return join(array, String.valueOf(delimiter), startIndex, endIndex);
+    }
+
+    /**
+     * <p>

Review comment:
       I've followed convention from other Javadoc in the file. Fixed.




-- 
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]


Reply via email to