nizhikov commented on code in PR #13425: URL: https://github.com/apache/ignite/pull/13425#discussion_r3706947117
########## modules/binary/impl/src/main/java/org/apache/ignite/marshaller/jdk/JdkMarshallerImpl.java: ########## @@ -66,23 +70,26 @@ * For information about Spring framework visit <a href="http://www.springframework.org/">www.springframework.org</a> */ public class JdkMarshallerImpl extends AbstractNodeNameAwareMarshaller implements JdkMarshaller { - /** Class name filter. */ - private final IgnitePredicate<String> clsFilter; - - /** - * Default constructor. - * Use this constructor with caution. It creates a JdkMarshaller instance that has class filtering DISABLED. Therefore, - * if it will be used on the server side to unmarshal user data received from the network, it may lead to security breaches. - */ - public JdkMarshallerImpl() { - this(null); - } - - /** - * @param clsFilter Class name filter. - */ - public JdkMarshallerImpl(@Nullable IgnitePredicate<String> clsFilter) { - this.clsFilter = clsFilter; + /** */ + private static final Object MUX = new Object(); Review Comment: Removed -- 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]
