parent
7744911c32
commit
630e62312c
|
|
@ -44,7 +44,8 @@ public class CreateAopProxyInterceptor implements InstanceMethodsAroundIntercept
|
|||
Object ret) throws Throwable {
|
||||
AdvisedSupport advisedSupport = (AdvisedSupport)allArguments[0];
|
||||
|
||||
if (EnhancedInstance.class.isAssignableFrom(advisedSupport.getTargetClass())) {
|
||||
Class targetClass = advisedSupport.getTargetClass();
|
||||
if (targetClass != null && EnhancedInstance.class.isAssignableFrom(targetClass)) {
|
||||
return true;
|
||||
}
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Reference in New Issue