From 97df7f43048e9c7105eaaf78e512a52283058aa9 Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Sun, 19 Mar 2023 21:56:11 +0100 Subject: [PATCH] Fixed javadoc errors --- src/zutil/ArrayUtil.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/zutil/ArrayUtil.java b/src/zutil/ArrayUtil.java index 81e55e6..4ff750c 100755 --- a/src/zutil/ArrayUtil.java +++ b/src/zutil/ArrayUtil.java @@ -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 */ 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 */ public static byte[] combine(byte[]... arrays) { int totalLength = 0;