in core/src/main/java/org/apache/commons/proxy2/stub/AnnotationInvoker.java [32:37]
public Object invoke(Object proxy, Method method, Object[] arguments) throws Throwable
{
final Object result = method.getDefaultValue();
return result == null && method.getReturnType().isPrimitive() ? ProxyUtils.nullValue(method.getReturnType())
: result;
}