AMashenkov commented on code in PR #6213: URL: https://github.com/apache/ignite-3/pull/6213#discussion_r2195438357
########## modules/runner/src/test/java/org/apache/ignite/internal/configuration/compatibility/framework/ConfigurationTreeComparator.java: ########## @@ -74,9 +81,14 @@ public void visit(ConfigNode node) { */ private static class Validator implements Consumer<ConfigNode> { private final List<ConfigNode> roots; + private final ComparisonContext compContext; + private Collection<KeyIgnorer> deletedItems; - private Validator(List<ConfigNode> roots) { + private static final ConfigNode NO_OP_NODE = new ConfigNode(); Review Comment: ```suggestion // We return the instance with no child as a stub in case of deleted node/subtree to stop traversing deleted subtree. private static final ConfigNode NO_OP_NODE = new ConfigNode(); ``` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org