修复comment

This commit is contained in:
huangxingming 2023-03-07 13:50:41 +08:00
parent 94e6be4bf0
commit 00b064ba46

View File

@ -2093,9 +2093,6 @@ public class ArrayUtil extends PrimitiveArrayUtil {
return false;
}
Set<T> elementSet = new HashSet<>(Arrays.asList(array));
for (T element : array) {
elementSet.add(element);
}
return elementSet.size() != array.length;
}
}