Vladsz83 commented on code in PR #12891:
URL: https://github.com/apache/ignite/pull/12891#discussion_r2958115380
##########
modules/core/src/main/java/org/apache/ignite/internal/managers/eventstorage/GridEventStorageMessage.java:
##########
@@ -219,31 +217,33 @@ public void prepareMarshal(Marshaller marsh) throws
IgniteCheckedException {
evtsBytes = U.marshal(marsh, evts);
}
- /**
- * @param marsh Marshaller.
- * @param ldr Class loader.
- * @param filterClsLdr Class loader for filter.
- */
- public void finishUnmarshal(Marshaller marsh, ClassLoader ldr, ClassLoader
filterClsLdr) throws IgniteCheckedException {
+ /** {@inheritDoc} */
+ @Override public void finishUnmarshal(Marshaller marsh, ClassLoader ldr)
throws IgniteCheckedException {
if (resTopicBytes != null && resTopic == null) {
resTopic = U.unmarshal(marsh, resTopicBytes, ldr);
resTopicBytes = null;
}
- if (filterBytes != null && filter == null && filterClsLdr != null) {
Review Comment:
No. Now cannot be null (not expected)
--
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]