Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / SchemaSourceFilter.java
index f3122ebec06c7bd7e6f3c7fc29623b90a56f7de6..2deaab6dc4cf35bdb855a926b8eb0ae3cb838f46 100644 (file)
@@ -25,7 +25,7 @@ public interface SchemaSourceFilter {
      */
     SchemaSourceFilter ALWAYS_ACCEPT = new SchemaSourceFilter() {
         private final Iterable<Class<? extends SchemaSourceRepresentation>> representations =
-                Collections.<Class<? extends SchemaSourceRepresentation>>singletonList(SchemaSourceRepresentation.class);
+                Collections.singletonList(SchemaSourceRepresentation.class);
         private final ListenableFuture<Boolean> applyFuture = Futures.immediateFuture(Boolean.TRUE);
 
         @Override