Merge branch 'develop' into 2.0.19-SNAPSHOT
This commit is contained in:
commit
007b6a51ae
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue