Remove illegal FIXME notes
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / SchemaSourceFilter.java
index 70bbe20a2091418924a0c39bf14c97670ff1e754..cccfc92733e78b5c52536d8224002f0e17a178b2 100644 (file)
@@ -25,11 +25,11 @@ public interface SchemaSourceFilter {
      * A {@link SchemaSourceFilter} which accepts any schema source it is presented with.
      */
     @NonNull SchemaSourceFilter ALWAYS_ACCEPT = new SchemaSourceFilter() {
-        private final Iterable<Class<? extends SchemaSourceRepresentation>> representations =
+        private final ImmutableList<Class<? extends SchemaSourceRepresentation>> representations =
                 ImmutableList.of(SchemaSourceRepresentation.class);
 
         @Override
-        public Iterable<Class<? extends SchemaSourceRepresentation>> supportedRepresentations() {
+        public ImmutableList<Class<? extends SchemaSourceRepresentation>> supportedRepresentations() {
             return representations;
         }
 
@@ -57,6 +57,5 @@ public interface SchemaSourceFilter {
      * @return Promise of a filtering decision. The result should be {@link Boolean#TRUE}
      *         if the source is acceptable.
      */
-    // FIXME: 3.0.0: require FluentFuture
     ListenableFuture<Boolean> apply(SchemaSourceRepresentation schemaSource);
 }