fix #10075 fix deserialization by overriding PreferredLoaderObjectInputStream from...
[taxeditor.git] / eu.etaxonomy.taxeditor.cdmlib / src / main / java / org / springframework / remoting / httpinvoker / CachingHttpInvokerProxyFactoryBean.java
index 93c680150ab5fb65d5d6f7b0c5a4ca46a254c2d1..07b2cf26dd9c43252431fe35cfdc64eefe60b320 100644 (file)
@@ -89,6 +89,7 @@ public class CachingHttpInvokerProxyFactoryBean extends HttpInvokerProxyFactoryB
         RemoteInvocationResult invocationResult = doExecuteRequest(invocation, originalInvocation);
         if(invocationResult.getValue() != null && !invocationResult.hasException()) {
 
+            //Note AM (2022-06-15): the debug information seem to be misleading (also because cache() is not used/implemented anymore)
             if(persistingMethods.contains(invocation.getMethodName())) {
                 invocationResult = new RemoteInvocationResult(cdmEntitySessionManager().load(invocationResult.getValue(), true));
                 logger.debug("Entity cached with updating cached data");