ibessonov commented on a change in pull request #208:
URL: https://github.com/apache/ignite-3/pull/208#discussion_r670453386



##########
File path: 
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/tree/NamedListNode.java
##########
@@ -110,18 +172,8 @@ public void forceDelete(String key) {
         map.remove(key);
     }
 
-    /** {@inheritDoc} */
-    @Override public NamedListChange<N> create(String key, Consumer<N> 
valConsumer) {
-        Objects.requireNonNull(valConsumer, "valConsumer");
-
-        N val = map.get(key);
-
-        if (val == null)
-            map.put(key, val = valSupplier.get());
-
-        valConsumer.accept(val);
-
-        return this;
+    public void reorderKeys(List<String> orderedKeys) {

Review comment:
       Done




-- 
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]


Reply via email to