return emptyArray;
}
private static Object newEmptyArray(String typeDesc)
{
Type type = Type.getType(typeDesc);
Class<?> elementType = Utilities.getClassForType(type.getElementType());
return Array.newInstance(elementType, new int[type.getDimensions()]);
}