LANG-1296: ArrayUtils.addAll() has unsafe use of varargs

remove SafeVarargs annotation
This commit is contained in:
pascalschumacher 2017-01-20 17:47:20 +01:00
parent d0e2bfc466
commit 7e60537820
1 changed files with 0 additions and 1 deletions

View File

@ -5059,7 +5059,6 @@ public static boolean isNotEmpty(final boolean[] array) {
* @since 2.1
* @throws IllegalArgumentException if the array types are incompatible
*/
@SafeVarargs
public static <T> T[] addAll(final T[] array1, final T... array2) {
if (array1 == null) {
return clone(array2);