
org.jboss.weld.invokable.ArrayUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-se-shaded Show documentation
Show all versions of weld-se-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for Java SE.
The newest version!
package org.jboss.weld.invokable;
class ArrayUtils {
private ArrayUtils() {
}
static Object[] trimArrayToSize(Object[] array, int size) {
if (array == null || array.length <= size) {
return array;
}
Object[] result = new Object[size];
System.arraycopy(array, 0, result, 0, size);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy