Push out AbstractMountPointContextFactory FIXMEs
[yangtools.git] / yang / rfc8528-data-util / src / main / java / org / opendaylight / yangtools / rcf8528 / data / util / AbstractMountPointContextFactory.java
index 1c6b685c331b8555611a81453017185d6bc006b7..217e968c7ab8e659bf144b8086b065af2665ea3b 100644 (file)
@@ -61,7 +61,7 @@ public abstract class AbstractMountPointContextFactory extends AbstractDynamicMo
             return config;
         }
 
-        // FIXME: 6.0.0: make this return a set of XPath expressions
+        // FIXME: 7.0.0: make this return a set of XPath expressions
         public ImmutableSet<String> getParentReferences() {
             return parentReferences;
         }
@@ -148,7 +148,7 @@ public abstract class AbstractMountPointContextFactory extends AbstractDynamicMo
         return schemaRef.getChild(SHARED_SCHEMA).map(sharedSchema -> {
             checkArgument(sharedSchema instanceof ContainerNode, "Unexpected shared-schema container %s", sharedSchema);
             return ((ContainerNode) sharedSchema).getChild(PARENT_REFERENCE).map(parentRef -> {
-                // FIXME: decode
+                // FIXME: 7.0.0: parse XPaths. Do we have enough context for that?
                 return ImmutableSet.<String>of();
             }).orElseGet(ImmutableSet::of);
         }).orElseGet(() -> {