apupier commented on code in PR #18682:
URL: https://github.com/apache/camel/pull/18682#discussion_r2222264615
##########
core/camel-util/src/main/java/org/apache/camel/util/ClassLoadingAwareObjectInputStream.java:
##########
@@ -58,6 +60,14 @@ protected Class<?> resolveClass(ObjectStreamClass classDesc)
throws IOException,
return load(classDesc.getName(), cl, inLoader);
}
+ class NoopDynamicInvocationHandler implements InvocationHandler {
+
+ @Override
+ public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
+ return null;
+ }
+ }
Review Comment:
What is the reason to use a specific NoopInvocationHandler?
Why not using org.apache.camel.component.bean.CamelInvocationHandler?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]