Merge branch 'develop' into 2.0.19-SNAPSHOT

This commit is contained in:
Greg Burd 2017-08-15 15:14:45 -04:00
commit 007b6a51ae

View file

@ -62,7 +62,7 @@ public class MapperInvocationHandler<E> implements InvocationHandler, Serializab
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// Transient, default methods should simply be invoked as-is.
if (method.isDefault() && method.getDeclaredAnnotation(Transient.class) == null) {
if (method.isDefault() && method.getDeclaredAnnotation(Transient.class) != null) {
return invokeDefault(proxy, method, args);
}