Fixed javadoc errors

This commit is contained in:
Ziver Koc 2023-03-19 21:56:11 +01:00
parent 2cd514df9b
commit 97df7f4304

View file

@ -87,7 +87,6 @@ public class ArrayUtil {
*
* @param arrays the arrays to be combined.
* @return one array containing all the elements of the provided arrays.
* @param <T>
*/
public static int[] combine(int[]... arrays) {
int totalLength = 0;
@ -111,7 +110,6 @@ public class ArrayUtil {
*
* @param arrays the arrays to be combined.
* @return one array containing all the elements of the provided arrays.
* @param <T>
*/
public static byte[] combine(byte[]... arrays) {
int totalLength = 0;