X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-inmemory-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fstore%2Fimpl%2Ftree%2FListenerTree.java;h=ac7a31818720dcc494bfa2df714ea862bed2ba45;hb=6faa900c307b5d97fc7726d31b6dad0e67077db8;hp=39152767dd0b063c373adaed9fd5704b8702719c;hpb=d255fdd0b14660a22ff63771d954ac3fe5d0cb7e;p=controller.git diff --git a/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ListenerTree.java b/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ListenerTree.java index 39152767dd..ac7a318187 100644 --- a/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ListenerTree.java +++ b/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ListenerTree.java @@ -144,7 +144,10 @@ public final class ListenerTree { /** * A walking context, pretty much equivalent to an iterator, but it - * exposes the undelying tree structure. + * exposes the underlying tree structure. + */ + /* + * FIXME: BUG-1511: split this class out as ListenerWalker. */ public static final class Walker implements AutoCloseable { private final Lock lock; @@ -177,6 +180,9 @@ public final class ListenerTree { * only as long as the {@link org.opendaylight.controller.md.sal.dom.store.impl.tree.ListenerTree.Walker} instance through which it is reached remains * unclosed. */ + /* + * FIXME: BUG-1511: split this class out as ListenerNode. + */ public static final class Node implements StoreTreeNode, Identifiable { private final Collection> listeners = new ArrayList<>(); private final Map children = new HashMap<>();