Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / OrderedMapModificationStrategy.java
index c69a170f246550b8a2f53ef5899ad47c7cc86ce0..4143fb83ec98d98faaa88ba6ea8b13ab681ad3e6 100644 (file)
@@ -24,7 +24,7 @@ final class OrderedMapModificationStrategy extends AbstractNodeContainerModifica
 
     OrderedMapModificationStrategy(final ListSchemaNode schema, final TreeType treeType) {
         super(OrderedMapNode.class, treeType);
-        entryStrategy = Optional.<ModificationApplyOperation> of(new ListEntryModificationStrategy(schema, treeType));
+        entryStrategy = Optional.of(new ListEntryModificationStrategy(schema, treeType));
     }
 
     @Override